Skip to content
Snippets Groups Projects
Commit 3baf8be1 authored by Brian McKenna's avatar Brian McKenna Committed by Eelco Dolstra
Browse files

Fix broken call to shellwords

nix-shell shebangs were broken by 9018deab
parent 5d8b7eb3
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ if ($runEnv && defined $ARGV[0] && $ARGV[0] !~ /nix-shell/) { ...@@ -57,7 +57,7 @@ if ($runEnv && defined $ARGV[0] && $ARGV[0] !~ /nix-shell/) {
while (<SCRIPT>) { while (<SCRIPT>) {
chomp; chomp;
if (/^\#\!\s*nix-shell (.*)$/) { if (/^\#\!\s*nix-shell (.*)$/) {
push @ARGV, shellwords(/ /, $1); push @ARGV, shellwords($1);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment