From fb9d70a8fd9c4181feaf20ed287c6e3758e4d5ab Mon Sep 17 00:00:00 2001 From: Felix Althaus Date: Wed, 31 Jul 2024 14:16:01 +0200 Subject: [PATCH] =?UTF-8?q?[BUGFIX]=20runTests.sh=E2=80=98s=20npm=20comman?= =?UTF-8?q?d=20now=20works=20again=20with=20parameters?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #1418 --- Build/Scripts/runTests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh index 7099c15..4a3868b 100755 --- a/Build/Scripts/runTests.sh +++ b/Build/Scripts/runTests.sh @@ -613,7 +613,7 @@ case ${TEST_SUITE} in ;; npm) COMMAND_PARTS=(npm "$@") - ${CONTAINER_BIN} run ${CONTAINER_COMMON_PARAMS} --name npm-command-${SUFFIX} ${IMAGE_NODE} /bin/sh -c "${COMMAND_PARTS[@]}" + ${CONTAINER_BIN} run ${CONTAINER_COMMON_PARAMS} --name npm-command-${SUFFIX} ${IMAGE_NODE} "${COMMAND_PARTS[@]}" SUITE_EXIT_CODE=$? ;; phpstan)