File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ sec: check-gosec # Check for security vulnerabilities
57
57
58
58
check-gosec :
59
59
@command -v gosec > /dev/null 2>&1 \
60
- || @ go install github.com/securego/gosec/v2/cmd/gosec@latest
60
+ || go install github.com/securego/gosec/v2/cmd/gosec@latest
61
61
62
62
unused : | check-staticcheck # Look for unused code
63
63
@echo " Unused code:"
@@ -72,11 +72,11 @@ static: | check-staticcheck check-exhaustive
72
72
73
73
check-staticcheck :
74
74
@command -v staticcheck > /dev/null 2>&1 \
75
- || @ go install honnef.co/go/tools/cmd/staticcheck@latest
75
+ || go install honnef.co/go/tools/cmd/staticcheck@latest
76
76
77
77
check-exhaustive :
78
78
@command -v exhaustive > /dev/null 2>&1 \
79
- || @ go install github.com/nishanths/exhaustive/cmd/exhaustive@latest
79
+ || go install github.com/nishanths/exhaustive/cmd/exhaustive@latest
80
80
81
81
generate : | check-oapi-codegen
82
82
go generate ./...
You can’t perform that action at this time.
0 commit comments