浏览代码

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" "$@"