mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
[BUGFIX] Remove invalid argment quuoting in runTests.sh
(#1029)
`Build/Scripts/runTests.sh` provides a test-suite `composer` and allows passing additional command and options directly down to the composer command. Due to an invalid quoting the passed options were broking and not regonized by the `composer` binary. This change removes the superflous argument passing and therefore allows passing additional options to the `composer` command. Resolves: #967
This commit is contained in:
parent
190e5f924a
commit
ba486fcee3
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ case ${TEST_SUITE} in
|
|||
cleanTestFiles
|
||||
;;
|
||||
composer)
|
||||
COMMAND="composer \"$@\""
|
||||
COMMAND="composer $@"
|
||||
${CONTAINER_BIN} run ${CONTAINER_COMMON_PARAMS} --name composer-command-${SUFFIX} -e COMPOSER_CACHE_DIR=.cache/composer -e COMPOSER_ROOT_VERSION=${COMPOSER_ROOT_VERSION} ${IMAGE_PHP} /bin/sh -c "${COMMAND}"
|
||||
SUITE_EXIT_CODE=$?
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue