ソースを参照

build: Do not quote the interpreter argument

This makes it possible again to pass options to the interpreter.
Guillem Jover 10 年 前
コミット
be3cbc2ef6
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      run-script

+ 1 - 1
run-script

@@ -16,4 +16,4 @@ interp="$1"
 script="$2"
 shift 2
 
-exec "$interp" "$cwd/$script" "$@"
+exec $interp "$cwd/$script" "$@"