From 16301c0d90e4584daf6e4dd650bd03e7ca09e7e6 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:54 +0100 Subject: [PATCH] fix(scripts): put the shebang on line 1 of game-server-admin-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. --- game-server-admin-launcher.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/game-server-admin-launcher.sh b/game-server-admin-launcher.sh index aadef6f..d76b233 100755 --- a/game-server-admin-launcher.sh +++ b/game-server-admin-launcher.sh @@ -1,4 +1,3 @@ - #!/usr/bin/env bash # SPDX-License-Identifier: AGPL-3.0-or-later # Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)