From 68c0fec5d4d4b2aacfef2752baac2e73be9bc21e Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Tue, 30 Apr 2024 10:17:24 +0200 Subject: [PATCH] chore(pio-build): ignore shellcheck SC1091 Signed-off-by: Frederic Pillon --- .github/actions/pio-build/entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/pio-build/entrypoint.sh b/.github/actions/pio-build/entrypoint.sh index 99b5cc7654..d090676cd5 100755 --- a/.github/actions/pio-build/entrypoint.sh +++ b/.github/actions/pio-build/entrypoint.sh @@ -5,6 +5,7 @@ readonly CMSIS_ARCHIVE="CMSIS-${CMSIS_VERSION}.tar.bz2" # Use python venv python3 -m venv "$HOME/venv" +# shellcheck disable=SC1091 . "$HOME/venv/bin/activate" # Install PlatformIO python3 -m pip install --quiet --upgrade platformio