From 7065d5284a73f8c6f3645a59add2bbfaee497afc Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Wed, 26 Aug 2026 18:22:49 +0100 Subject: [PATCH] fix(setup): '//' is not a shell comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Line 3 used a C-style '//' comment in a bash script. '//' is not a comment — bash tries to execute it, so the script emitted a 'No such file or directory' error on every run and shellcheck could not parse the file at all. Changed to '#'. Found by an estate-wide shellcheck sweep of 5,111 tracked scripts across 375 repos. This file was one of 11 that fail to PARSE (SC1073/SC1072) — shellcheck stops analysing at the failure, so anything after it was never checked either. Verified: shellcheck -S error now reports 0 findings for this file. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 1ec53fc3..7bbe0203 100755 --- a/setup.sh +++ b/setup.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # SPDX-License-Identifier: MPL-2.0 -// Owner: Jonathan D.A. Jewell +# Owner: Jonathan D.A. Jewell # Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath) # # Ephapax — Universal Setup Script