From 75c340634e87d883f6e5a748543e81c8c8b89860 Mon Sep 17 00:00:00 2001 From: jacek-prisma Date: Tue, 28 Jan 2025 13:41:01 +0000 Subject: [PATCH] ci: fix shellcheck failing on venv activate (#5142) --- .github/workflows/utils/uploadAndVerify.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/utils/uploadAndVerify.sh b/.github/workflows/utils/uploadAndVerify.sh index 7ad4baebf68..8bbe4bd3531 100644 --- a/.github/workflows/utils/uploadAndVerify.sh +++ b/.github/workflows/utils/uploadAndVerify.sh @@ -5,6 +5,8 @@ set -eux; AWS_CLI_VERSION=1.36.40 python -m venv .venv +# shellcheck disable=SC1091 +# the file is generated by `python -m venv .venv` source .venv/bin/activate pip install awscli==$AWS_CLI_VERSION