summaryrefslogtreecommitdiffstats
path: root/ci/installation_scripts/install_for_amd64.sh
diff options
context:
space:
mode:
authorDidier Wenzek <didier.wenzek@acidalie.com>2022-08-19 09:05:33 +0200
committerGitHub <noreply@github.com>2022-08-19 09:05:33 +0200
commit53c75cb81ec4551fde6dab3e26ef55ff6cd7e7f2 (patch)
tree73ecbfeae6dfd6c9a3d084c769e802d1e22dc560 /ci/installation_scripts/install_for_amd64.sh
parentee3047cd76ad7485526f262442d97a48c6427349 (diff)
parente67ad4d292fb734ed8d6931e7b400cbc2f916dc8 (diff)
Merge pull request #1326 from matthiasbeyer/add-shellcheck
Add shellcheck action, fix issues
Diffstat (limited to 'ci/installation_scripts/install_for_amd64.sh')
-rwxr-xr-xci/installation_scripts/install_for_amd64.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/installation_scripts/install_for_amd64.sh b/ci/installation_scripts/install_for_amd64.sh
index 32071868..fe6d9bd5 100755
--- a/ci/installation_scripts/install_for_amd64.sh
+++ b/ci/installation_scripts/install_for_amd64.sh
@@ -5,10 +5,11 @@ set -euo pipefail
PKG_DIR=$1
# Load the package list as $EXTERNAL_AMD64_PACKAGES and $RELEASE_PACKAGES
+# shellcheck disable=SC1091
source ./ci/package_list.sh
# Install pre-required packages
-sudo apt-get --assume-yes install $(echo "${EXTERNAL_AMD64_PACKAGES[*]}")
+sudo apt-get --assume-yes install "${EXTERNAL_AMD64_PACKAGES[*]}"
# Install thin-edge packages
for PACKAGE in "${RELEASE_PACKAGES[@]}"