From 6d5fc194642239a994f2c1f1f170914880fcbb71 Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 25 Mar 2025 19:24:48 +0100 Subject: [PATCH] Enable color output in govulncheck (#34012) Make `govulncheck` show color, which by default it doesn't for some reason. (cherry picked from commit 2089401653cb4d351aa6e0bb6a86d987d115acb8) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c28e4e92ca..0594ea8866 100644 --- a/Makefile +++ b/Makefile @@ -523,7 +523,7 @@ lint-yaml: .venv .PHONY: security-check security-check: - go run $(GOVULNCHECK_PACKAGE) ./... + go run $(GOVULNCHECK_PACKAGE) -show color ./... ### # Development and testing targets