From 43a805870ab6efd2eb1a71c843ff889a495f68b6 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Thu, 26 Apr 2018 12:55:34 +0200 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5b2a8230..866c3e63 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ test: deps go vet ./$$pkg ; \ megacheck ./$$pkg ; \ go test -race ./$$pkg -coverprofile=$$pkg.profile -covermode=atomic; \ - tail -n +2 $$pkg.profile >> coverage.profile && rm -rf $$pkg.profile ; \ + tail -n +2 $$pkg.profile >> coverage.profile || true && rm -rf $$pkg.profile ; \ done html_coverage: test