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 @@ -410,12 +410,12 @@ watch-backend: go-check ## watch backend files and continuously rebuild
410410test : test-frontend test-backend # # test everything
411411
412412.PHONY : test-backend
413- test-backend : # # test frontend files
413+ test-backend : # # test backend files
414414 @echo " Running go test with $( GOTESTFLAGS) -tags '$( TEST_TAGS) '..."
415415 @$(GO ) test $(GOTESTFLAGS ) -tags=' $(TEST_TAGS)' $(GO_TEST_PACKAGES )
416416
417417.PHONY : test-frontend
418- test-frontend : node_modules # # test backend files
418+ test-frontend : node_modules # # test frontend files
419419 npx vitest
420420
421421.PHONY : test-check
@@ -737,7 +737,7 @@ generate-go: $(TAGS_PREREQ)
737737
738738.PHONY : security-check
739739security-check :
740- go run $(GOVULNCHECK_PACKAGE ) ./...
740+ go run $(GOVULNCHECK_PACKAGE ) -show color ./...
741741
742742$(EXECUTABLE ) : $(GO_SOURCES ) $(TAGS_PREREQ )
743743 CGO_CFLAGS=" $( CGO_CFLAGS) " $(GO ) build $(GOFLAGS ) $(EXTRA_GOFLAGS ) -tags ' $(TAGS)' -ldflags ' -s -w $(LDFLAGS)' -o $@
You can’t perform that action at this time.
0 commit comments