From 1c4fc531fa3c872884f15a8b9519bdc679ccd9cf Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 14 Dec 2025 17:16:35 +0100 Subject: [PATCH] fix(shellcheck): correct source path hint for retry_403 helper - 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 --- scripts/launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/launcher.sh b/scripts/launcher.sh index 756c7f7..72270cc 100755 --- a/scripts/launcher.sh +++ b/scripts/launcher.sh @@ -13,7 +13,7 @@ if [[ ! -f "${RETRY_LIB}" ]]; then exit 1 fi -# shellcheck source=./nix/lib/retry_403.sh +# shellcheck source=./scripts/nix/lib/retry_403.sh source "${RETRY_LIB}" # ---------------------------------------------------------------------------