remove debug lines

This commit is contained in:
2026-04-03 15:58:02 -04:00
parent 407582719c
commit 46528033ed
2 changed files with 0 additions and 5 deletions

View File

@@ -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

View File

@@ -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";