From a3aa7b6394116cad03150a753646d4fccbbcaa21 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 14 Dec 2025 16:42:22 +0100 Subject: [PATCH] git commit -am "fix(shellcheck): point source hint to repo-local retry_403.sh - 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 --- scripts/launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/launcher.sh b/scripts/launcher.sh index 3499b21..756c7f7 100755 --- a/scripts/launcher.sh +++ b/scripts/launcher.sh @@ -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}" # ---------------------------------------------------------------------------