From fd86a2490ea81eba8e12dcce76455710f182f81c Mon Sep 17 00:00:00 2001 From: Corey Hulen Date: Wed, 6 Sep 2017 20:38:13 -0700 Subject: [PATCH] Fixing EE build for master (#7394) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79439d4b74..f5e6d5d186 100644 --- a/Makefile +++ b/Makefile @@ -304,7 +304,7 @@ ifeq ($(BUILD_ENTERPRISE_READY),true) for package in $(EE_PACKAGES); do \ echo "Testing "$$package; \ - $(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -coverpkg=$(ALL_PACKAGES_COMMA) -c $$package; \ + $(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -coverpkg=$(ALL_PACKAGES_COMMA) -c $$package || exit 1; \ if [ -f $$(basename $$package).test ]; then \ echo "Testing "$$package; \ ./$$(basename $$package).test -test.v $(TESTFLAGSEE) -test.timeout=2000s -test.coverprofile=cprofile.out || exit 1; \