From 03c8457b7feb2e30460107f81453944c6a47dc86 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Wed, 26 Aug 2026 18:29:46 +0100 Subject: [PATCH] fix(scripts): put the shebang on line 1 of aerie-launcher.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The shebang was not the first line, so the kernel never honoured it — the script ran under whatever shell invoked it rather than the one it declares. shellcheck reports this as SC1128. Found by an estate-wide sweep of 5,111 tracked scripts across 375 repos: 20 files carry this defect, 19 of them a generated *-launcher.sh. ⚠ Source not identified. The generator, standards/docs/UX-standards/comprehensive-launcher-template.sh, is CLEAN — its own line 1 is the shebang and it reports 0 shellcheck errors. The stray line is therefore introduced when the launcher is copied into each repo, by something not yet found, so this may recur until that is tracked down. Other lines are preserved in order; only the shebang moves. --- aerie-launcher.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/aerie-launcher.sh b/aerie-launcher.sh index 0ab5d6d..953e37b 100755 --- a/aerie-launcher.sh +++ b/aerie-launcher.sh @@ -1,4 +1,3 @@ - #!/usr/bin/env bash # SPDX-License-Identifier: MPL-2.0 # Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)