diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-11-16 20:59:40 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-11-16 21:07:31 +0100 |
commit | 425f7c726bb6195249e934177d20c54875dda3b2 (patch) | |
tree | 1a01624a6ff53e282f8b6802e64b3c7246a57c69 | |
parent | 3cae233d69f79eddaa99c38305fe33977e3a706b (diff) |
Makefile: don't use test -v because it hides failures in scrollback
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |