Always generate cargo.out, even on successful build

rust-46606
Mahmoud Al-Qudsi 2017-12-24 18:30:03 -06:00
parent 46c5d902ee
commit 4dcc496a89
1 changed files with 1 additions and 1 deletions

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