summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xci/installation_scripts/clean_up_rpi.sh4
-rwxr-xr-xci/installation_scripts/install_for_amd64.sh2
-rwxr-xr-xci/installation_scripts/install_for_arm.sh2
3 files changed, 4 insertions, 4 deletions
diff --git a/ci/installation_scripts/clean_up_rpi.sh b/ci/installation_scripts/clean_up_rpi.sh
index eb250591..e251440a 100755
--- a/ci/installation_scripts/clean_up_rpi.sh
+++ b/ci/installation_scripts/clean_up_rpi.sh
@@ -11,5 +11,5 @@ sudo systemctl stop apama
source ./ci/package_list.sh
# Purge packages
-sudo apt --assume-yes purge "${RELEASE_PACKAGES[*]}"
-sudo DEBIAN_FRONTEND=noninteractive apt --assume-yes purge "${EXTERNAL_ARM_PACKAGES[*]}"
+sudo apt --assume-yes purge "${RELEASE_PACKAGES[@]}"
+sudo DEBIAN_FRONTEND=noninteractive apt --assume-yes purge "${EXTERNAL_ARM_PACKAGES[@]}"
diff --git a/ci/installation_scripts/install_for_amd64.sh b/ci/installation_scripts/install_for_amd64.sh
index fe6d9bd5..7aa38188 100755
--- a/ci/installation_scripts/install_for_amd64.sh
+++ b/ci/installation_scripts/install_for_amd64.sh
@@ -9,7 +9,7 @@ PKG_DIR=$1
source ./ci/package_list.sh
# Install pre-required packages
-sudo apt-get --assume-yes install "${EXTERNAL_AMD64_PACKAGES[*]}"
+sudo apt-get --assume-yes install "${EXTERNAL_AMD64_PACKAGES[@]}"
# Install thin-edge packages
for PACKAGE in "${RELEASE_PACKAGES[@]}"
diff --git a/ci/installation_scripts/install_for_arm.sh b/ci/installation_scripts/install_for_arm.sh
index 45fcd04d..cd1d58d2 100755
--- a/ci/installation_scripts/install_for_arm.sh
+++ b/ci/installation_scripts/install_for_arm.sh
@@ -9,7 +9,7 @@ PKG_DIR=$1
source ./ci/package_list.sh
# Install pre-required packages
-sudo apt-get --assume-yes install "${EXTERNAL_ARM_PACKAGES[*]}"
+sudo apt-get --assume-yes install "${EXTERNAL_ARM_PACKAGES[@]}"
# Install thin-edge packages
for PACKAGE in "${RELEASE_PACKAGES[@]}"