diff options
author | Leith Bade <leith@mapbox.com> | 2015-08-13 20:08:28 +1000 |
---|---|---|
committer | Leith Bade <leith@mapbox.com> | 2015-08-13 20:08:28 +1000 |
commit | 55fe35af8d78a1d336ad27d2b0538352942950e5 (patch) | |
tree | 62f1dbf3cc1f612c76d5dd34910238abf6278920 /scripts/main.mk | |
parent | 5ff855bb0054e7055ae23cf072702b3a216b86e4 (diff) | |
download | qtlocation-mapboxgl-55fe35af8d78a1d336ad27d2b0538352942950e5.tar.gz |
Fix xcpretty from swallowing xcodebuild error codes
Diffstat (limited to 'scripts/main.mk')
-rw-r--r-- | scripts/main.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/main.mk b/scripts/main.mk index b641a6ffe2..ee4320a13f 100644 --- a/scripts/main.mk +++ b/scripts/main.mk @@ -100,7 +100,7 @@ Makefile/%: Makefile/__project__ Xcode/%: Xcode/__project__ @printf "$(TEXT_BOLD)$(COLOR_GREEN)* Building target $*...$(FORMAT_END)\n" - $(QUIET)$(ENV) xcodebuild \ + $(QUIET)$(ENV) set -o pipefail && xcodebuild \ $(XCODEBUILD_ARGS) \ -project ./build/$(HOST_SLUG)/gyp/$(HOST).xcodeproj \ -configuration $(BUILDTYPE) \ |