From 414e050084738e30f389ca7fbf420268eafd904e Mon Sep 17 00:00:00 2001 From: Kreyren Date: Sun, 9 Feb 2020 17:32:20 +0000 Subject: [PATCH] fhdfjh --- QA/travis-ci/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/QA/travis-ci/install.sh b/QA/travis-ci/install.sh index 2c4aeae..2ae4c5f 100755 --- a/QA/travis-ci/install.sh +++ b/QA/travis-ci/install.sh @@ -54,7 +54,8 @@ elif [ "$TRAVIS_OS_NAME" = linux ] && [ -n "$DOCKER" ] && [ -z "$QEMU" ]; then # Install dependencies if [ -n "$PACKAGES" ]; then - docker exec "$CONTAINER" apt install -y "$PACKAGES" || die 1 "Unable to install following packages on '$CONTAINER': '$PACKAGES'" + # NOTICE: DO not double quote PACKAGES + docker exec "$CONTAINER" apt install -y $PACKAGES || die 1 "Unable to install following packages on '$CONTAINER': '$PACKAGES'" elif [ -z "$PACKAGES" ]; then true else