From b4927a753db3330184f6db43a19f63ab29a5dfca Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Tue, 4 May 2021 21:41:49 -0700 Subject: [PATCH] Toolchain: Make BuildPython.sh shellcheck compliant Shellcheck is unable to source non-literal includes, so inform shellcheck to just ignore this include. --- Toolchain/BuildPython.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Toolchain/BuildPython.sh b/Toolchain/BuildPython.sh index 4453e4a389..fa173f2aed 100755 --- a/Toolchain/BuildPython.sh +++ b/Toolchain/BuildPython.sh @@ -10,6 +10,7 @@ PREFIX_DIR="$DIR/Local/$ARCH" BUILD_DIR="$DIR/Build/$ARCH" TARBALLS_DIR="$DIR/Tarballs" +# shellcheck source=/dev/null source "$DIR/../Ports/python3/version.sh" mkdir -p "${TARBALLS_DIR}"