From: Jason A. Donenfeld Date: Tue, 16 Nov 2021 19:59:40 +0000 (+0100) Subject: Makefile: don't use test -v because it hides failures in scrollback X-Git-Tag: 0.0.20220117~10 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=425f7c726bb6195249e934177d20c54875dda3b2;p=thirdparty%2Fwireguard-go.git Makefile: don't use test -v because it hides failures in scrollback Signed-off-by: Jason A. Donenfeld --- diff --git a/Makefile b/Makefile index c86ffa3..3f6e407 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ install: wireguard-go @install -v -d "$(DESTDIR)$(BINDIR)" && install -v -m 0755 "$<" "$(DESTDIR)$(BINDIR)/wireguard-go" test: - go test -v ./... + go test ./... clean: rm -f wireguard-go