From 00fc8e2de45ab97a77f926254e431bbc9a2ccc25 Mon Sep 17 00:00:00 2001 From: Cemal Kilic Date: Wed, 17 Sep 2025 11:08:48 -0400 Subject: [PATCH] fix(makefile): remove invalid @ symbol from shell commands Removes the @ symbol from within shell commands in check-gosec and related targets. This prevents shell errors like '/bin/sh: 2: @go: not found' during workflow runs (https://github.com/supabase/auth/actions/runs/17770297594/job/50602973582) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d30a11281..cf768b39b 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ sec: check-gosec # Check for security vulnerabilities check-gosec: @command -v gosec >/dev/null 2>&1 \ - || @go install github.com/securego/gosec/v2/cmd/gosec@latest + || go install github.com/securego/gosec/v2/cmd/gosec@latest unused: | check-staticcheck # Look for unused code @echo "Unused code:" @@ -72,11 +72,11 @@ static: | check-staticcheck check-exhaustive check-staticcheck: @command -v staticcheck >/dev/null 2>&1 \ - || @go install honnef.co/go/tools/cmd/staticcheck@latest + || go install honnef.co/go/tools/cmd/staticcheck@latest check-exhaustive: @command -v exhaustive >/dev/null 2>&1 \ - || @go install github.com/nishanths/exhaustive/cmd/exhaustive@latest + || go install github.com/nishanths/exhaustive/cmd/exhaustive@latest generate: | check-oapi-codegen go generate ./...