fix(shellcheck): correct source path hint for retry_403 helper
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

- Align ShellCheck source hint with repository layout
- Fix SC1091 without disabling checks
- Runtime sourcing via ${RETRY_LIB} remains unchanged

https://chatgpt.com/share/693ee308-6c48-800f-b14f-7d6081e14eb4
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-14 17:16:35 +01:00
parent 33dfbf3a4d
commit 1c4fc531fa

View File

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