Print args in case requirement fails

parent 115cb41b
......@@ -124,8 +124,8 @@ sub new {
@_
);
my $path = delete($opts{'path'}) or die "path required";
my $args = delete($opts{'args'}) or die "args required";
my $path = delete($opts{'path'}) or die "path required @_";
my $args = delete($opts{'args'}) or die "args required @_";
my $input = delete($opts{'input'});
my $output = delete($opts{'output'});
my $error = delete($opts{'error'});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment