Skip to content

Commit

Permalink
Fix launcher to pass arguments with spaces correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
clashman committed Feb 20, 2018
1 parent fcab6c6 commit ac07075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/noah.in
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if ($> != 0) {

my $init = "/bin/bash -i";
if (@ARGV != 0) {
$init = "@ARGV";
$init = join(" ", map {"'$_'"} @ARGV);
}

my $opts = "";
Expand Down

0 comments on commit ac07075

Please sign in to comment.