From 4dcc496a89912e9b02c152657905f107925f8338 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 a9e37da..f38f10e 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ bench: @$(CARGO) bench build: - @env TERM=xterm-256color $(CARGO) build --color=always 2>&1 + @env TERM=xterm-256color $(CARGO) build --color=always 2>&1; $(CARGO) build 2> cargo.out 1>/dev/null check: build test