Explorar o código

build: Do not quote the interpreter argument

This makes it possible again to pass options to the interpreter.
Guillem Jover %!s(int64=10) %!d(string=hai) anos
pai
achega
be3cbc2ef6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      run-script

+ 1 - 1
run-script

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