From 429afbce9b3aa55ce9661bcc4b2328783024afbb Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 24 Dec 2017 18:30:03 -0600 Subject: [PATCH] Always generate cargo.out, even on successful build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a485a08..764a883 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ bench: @$(CARGO) bench build: - @env TERM=xterm-256color $(CARGO) build --color=always 2>&1 && rm -f cargo.out || $(CARGO) build 2> cargo.out + @env TERM=xterm-256color $(CARGO) build --color=always 2>&1; $(CARGO) build 2> cargo.out 1>/dev/null check: build test