From 01e643a7778138c709f29391f91c16e8f95ba681 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 12 Apr 2022 16:06:18 -0700 Subject: scripts/ci/apt-install: fix (not ignore) shellcheck warning It is ok to quote $@, as it expands to "$1" "$2" ... Signed-off-by: Kir Kolyshkin --- scripts/ci/apt-install | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/ci/apt-install b/scripts/ci/apt-install index 5a790901a..45aca13f4 100755 --- a/scripts/ci/apt-install +++ b/scripts/ci/apt-install @@ -15,8 +15,7 @@ while true; do if [ "${install_retry_counter}" -gt "${max_apt_retries}" ]; then exit 1 fi - # shellcheck disable=SC2068 - apt-get clean -qqy && apt-get update -qqy && apt-get install -qqy --no-install-recommends $@ && break + apt-get clean -qqy && apt-get update -qqy && apt-get install -qqy --no-install-recommends "$@" && break # In case it is a network error let's wait a bit. echo "Retrying attempt ${install_retry_counter}" -- cgit v1.2.3