Always generate cargo.out, even on successful build

master
Mahmoud Al-Qudsi 2017-12-24 18:30:03 -06:00
parent 943d5ac763
commit 429afbce9b
1 changed files with 1 additions and 1 deletions

@ -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