Skip to content

Commit

Permalink
Merge pull request uber-archive#3 from uber/fix_makefile
Browse files Browse the repository at this point in the history
Fix makefile to exit on error
  • Loading branch information
aravindvs authored Dec 31, 2016
2 parents 6a89da2 + 04d9ac9 commit 4975bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ cover_profile: clean bins
@echo Testing packages:
@for dir in $(TEST_DIRS); do \
mkdir -p $(BUILD)/"$$dir"; \
go test "$$dir" $(TEST_ARG) -coverprofile=$(BUILD)/"$$dir"/coverage.out; \
go test "$$dir" $(TEST_ARG) -coverprofile=$(BUILD)/"$$dir"/coverage.out || exit 1; \
done;

cover: cover_profile
Expand Down

0 comments on commit 4975bba

Please sign in to comment.