Fix broken call to shellwords

nix-shell shebangs were broken by 9018deab
This commit is contained in:
Brian McKenna
2016-01-20 16:35:16 +01:00
committed by Eelco Dolstra
parent 5d8b7eb3e1
commit 3baf8be1d1
+1 -1
View File
@@ -57,7 +57,7 @@ if ($runEnv && defined $ARGV[0] && $ARGV[0] !~ /nix-shell/) {
while (<SCRIPT>) {
chomp;
if (/^\#\!\s*nix-shell (.*)$/) {
push @ARGV, shellwords(/ /, $1);
push @ARGV, shellwords($1);
}
}
}