From 46528033edfbe48ab500d26ce055f10f1fb9c63b Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 3 Apr 2026 15:58:02 -0400 Subject: [PATCH] remove debug lines --- src/install.sh | 2 -- src/security.sh | 3 --- 2 files changed, 5 deletions(-) diff --git a/src/install.sh b/src/install.sh index ec9632e..4e285d1 100755 --- a/src/install.sh +++ b/src/install.sh @@ -8,8 +8,6 @@ if [[ ! -n "$version" ]]; then exit 1; fi -echo "[DEBUG] $version found in install.sh"; - go install golang.org/x/vuln/cmd/govulncheck@latest go install github.com/securego/gosec/v2/cmd/gosec@latest diff --git a/src/security.sh b/src/security.sh index d54d8de..54ee8ca 100755 --- a/src/security.sh +++ b/src/security.sh @@ -8,10 +8,7 @@ if [[ "$STATIC_FLAG" == "no" && "$VULN_CHECK" == "no" ]]; then fi toolchain=$(go mod edit -json go.mod | jq -r ".Toolchain // empty"); -echo "[DEBUG] $toolchain found in go.mod"; - version=$(go env -json | jq -r ".GOVERSION // empty"); -echo "[DEBUG] $version found in go env"; if [[ -n "$toolchain" ]]; then echo "[DEBUG] overwriting version with toolchain";