summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-08-16 16:03:05 +0200
committerMatthias Beyer <matthias.beyer@ifm.com>2022-08-16 16:40:23 +0200
commitea85c683f7a19a693afc8863f2fb884e5b05e375 (patch)
tree7c43e66ed59575aa7580f025de0c4ee6b0cc1422
parented3d50d3d68161e38d86e6b4b45b943fb30c39f5 (diff)
Allow SC1091 lint for now
This patch allows SC1091 for now on these lines until the issue discussed and fixed. Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
-rwxr-xr-xci/build_scripts/build_for_amd64.sh1
-rwxr-xr-xci/build_scripts/build_for_arm.sh1
-rwxr-xr-xci/installation_scripts/clean_up_rpi.sh1
-rwxr-xr-xci/installation_scripts/install_for_amd64.sh1
-rwxr-xr-xci/installation_scripts/install_for_arm.sh1
5 files changed, 5 insertions, 0 deletions
diff --git a/ci/build_scripts/build_for_amd64.sh b/ci/build_scripts/build_for_amd64.sh
index 0100c4de..80e940a7 100755
--- a/ci/build_scripts/build_for_amd64.sh
+++ b/ci/build_scripts/build_for_amd64.sh
@@ -6,6 +6,7 @@ set -euo pipefail
cargo install cargo-deb --version 1.38.1
# Load the package list as $RELEASE_PACKAGES and $TEST_PACKAGES
+# shellcheck disable=SC1091
source ./ci/package_list.sh
# Build release debian packages
diff --git a/ci/build_scripts/build_for_arm.sh b/ci/build_scripts/build_for_arm.sh
index c43e0d7b..deb2857c 100755
--- a/ci/build_scripts/build_for_arm.sh
+++ b/ci/build_scripts/build_for_arm.sh
@@ -14,6 +14,7 @@ sudo apt update
sudo apt-get --assume-yes install binutils-arm-linux-gnueabihf binutils-aarch64-linux-gnu
# Load the release package list as $RELEASE_PACKAGES and $TEST_PACKAGES
+# shellcheck disable=SC1091
source ./ci/package_list.sh
# Cross build release for target
diff --git a/ci/installation_scripts/clean_up_rpi.sh b/ci/installation_scripts/clean_up_rpi.sh
index eabc3c82..eb250591 100755
--- a/ci/installation_scripts/clean_up_rpi.sh
+++ b/ci/installation_scripts/clean_up_rpi.sh
@@ -7,6 +7,7 @@ sudo tedge disconnect az
sudo systemctl stop apama
# Load the release package list as $RELEASE_PACKAGES
+# shellcheck disable=SC1091
source ./ci/package_list.sh
# Purge packages
diff --git a/ci/installation_scripts/install_for_amd64.sh b/ci/installation_scripts/install_for_amd64.sh
index c5cb2cbd..fe6d9bd5 100755
--- a/ci/installation_scripts/install_for_amd64.sh
+++ b/ci/installation_scripts/install_for_amd64.sh
@@ -5,6 +5,7 @@ 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
diff --git a/ci/installation_scripts/install_for_arm.sh b/ci/installation_scripts/install_for_arm.sh
index 3b95f5a8..45fcd04d 100755
--- a/ci/installation_scripts/install_for_arm.sh
+++ b/ci/installation_scripts/install_for_arm.sh
@@ -5,6 +5,7 @@ set -euo pipefail
PKG_DIR=$1
# Load the package list as $EXTERNAL_ARM_PACKAGES, $RELEASE_PACKAGES
+# shellcheck disable=SC1091
source ./ci/package_list.sh
# Install pre-required packages