summaryrefslogtreecommitdiff
path: root/run-script
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2015-11-08 11:33:40 +0100
committerGuillem Jover <guillem@debian.org>2015-12-12 21:58:57 +0100
commitbe3cbc2ef633524f8dac876f77a300ed4ce956f1 (patch)
tree34ba3626efdda42b67ca77cc7def0afcfc28de1a /run-script
parentf3af91bcb364140590ed3736f562dfe849bb6b72 (diff)
downloaddpkg-be3cbc2ef633524f8dac876f77a300ed4ce956f1.tar.gz
build: Do not quote the interpreter argument
This makes it possible again to pass options to the interpreter.
Diffstat (limited to 'run-script')
-rwxr-xr-xrun-script2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-script b/run-script
index 00e223094..b6c6a7555 100755
--- a/run-script
+++ b/run-script
@@ -16,4 +16,4 @@ interp="$1"
script="$2"
shift 2
-exec "$interp" "$cwd/$script" "$@"
+exec $interp "$cwd/$script" "$@"