Fix broken call to shellwords

nix-shell shebangs were broken by 9018deab

(cherry picked from commit 3baf8be1d1)
This commit is contained in:
Brian McKenna 2016-01-20 14:16:42 +11:00 committed by Eelco Dolstra
parent 08500066ea
commit 1852f7dbf3
1 changed files with 1 additions and 1 deletions

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