From 08c662f286ddfd12a985f57b584b02eca5af0ae6 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sat, 5 Sep 2026 17:30:51 +0100 Subject: [PATCH] Remove shebang from MSYS workaround in bootstrap script (#26442) --- util/env-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/env-bootstrap.sh b/util/env-bootstrap.sh index 1ed286ff3a1..9344895d52b 100755 --- a/util/env-bootstrap.sh +++ b/util/env-bootstrap.sh @@ -444,7 +444,7 @@ __EOT__ # Workaround for UV installer not pushing UV_TOOL_BIN_DIR into the env when used with their installer if [ "$(uname -o 2>/dev/null || true)" = "Msys" ]; then if [ "${UV_NO_MODIFY_PATH:-}" != "1" ]; then - echo -e "#!/bin/sh\n# Workaround for UV installer not pushing UV_TOOL_BIN_DIR into the env when used with their installer\nexport PATH=\"${UV_TOOL_BIN_DIR}:\$PATH\"" > /etc/profile.d/qmk-uv-env.sh + echo -e "# Workaround for UV installer not pushing UV_TOOL_BIN_DIR into the env when used with their installer\nexport PATH=\"${UV_TOOL_BIN_DIR}:\$PATH\"" > /etc/profile.d/qmk-uv-env.sh fi fi }