Fix broken call to shellwords

nix-shell shebangs were broken by 9018deab
This commit is contained in:
Brian McKenna 2016-01-20 14:16:42 +11:00 committed by Eelco Dolstra
parent 5d8b7eb3e1
commit 3baf8be1d1

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);
}
}
}