From 555fde4351d0a7defaed69c984966070732d4ec4 Mon Sep 17 00:00:00 2001 From: NaeiKinDus Date: Sat, 11 Nov 2023 18:18:33 +0100 Subject: [PATCH] fix(scripts): quoted argument to prevent re-splitting variable --- scripts/python_wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/python_wrapper.sh b/scripts/python_wrapper.sh index 04178cd..0b9f254 100755 --- a/scripts/python_wrapper.sh +++ b/scripts/python_wrapper.sh @@ -6,4 +6,4 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" test -d "$SCRIPT_DIR"/../venv || (printf "Python virtualenv not found (%s)\n" "$SCRIPT_DIR"/../venv && exit 1) source "$SCRIPT_DIR"/../venv/bin/activate -exec $@ +exec "$@"