Compare commits

...

1 Commits

Author SHA1 Message Date
Mahmoud Al-Qudsi 429afbce9b Always generate cargo.out, even on successful build 2017-12-24 18:30:03 -06:00
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