fix undefined variable in error message

main
parent af95b4d778
commit 19a2ec044a
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -4445,10 +4445,8 @@ sub main() {
my ($opt_name, $opt_value) = @_; my ($opt_name, $opt_value) = @_;
my $sanitize_path = sub { my $sanitize_path = sub {
my $pkg = shift; my $pkg = shift;
$pkg = abs_path($pkg); $pkg = abs_path($pkg)
if (!defined $pkg) { // error "cannot resolve absolute path of $pkg: $!";
error "cannot resolve absolute path of $pkg: $!";
}
if ($pkg !~ /^\//) { if ($pkg !~ /^\//) {
error "absolute path of $pkg doesn't start with a slash"; error "absolute path of $pkg doesn't start with a slash";
} }

Loading…
Cancel
Save