git commit -am "fix(shellcheck): point source hint to repo-local retry_403.sh
Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / linter-shell (push) Has been cancelled
Mark stable commit / linter-python (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled

- Fix SC1091 by updating ShellCheck source hint to repo path
- Keep runtime sourcing from /usr/lib/package-manager unchanged
- CI-safe without disabling ShellCheck rules"

https://chatgpt.com/share/693edae1-6d84-800f-8556-0e54dd15b944
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-14 16:42:22 +01:00
parent 724c262a4a
commit a3aa7b6394

View File

@@ -13,7 +13,7 @@ if [[ ! -f "${RETRY_LIB}" ]]; then
exit 1
fi
# shellcheck source=/usr/lib/package-manager/nix/lib/retry_403.sh
# shellcheck source=./nix/lib/retry_403.sh
source "${RETRY_LIB}"
# ---------------------------------------------------------------------------