File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,11 +47,13 @@ program: Pods clean build
4747# "test" appears to mean "build for testing and test", so the unit tests. Do that first, then make the real thing.
4848.PHONY : unittest
4949unittest : Pods
50- xcodebuild $(XCODEBUILD_OPTIONS ) CLASS_DUMP_VERSION=$(NUMERIC_VERSION )$(GIT_HASH ) test
50+ xcodebuild $(XCODEBUILD_OPTIONS ) CLASS_DUMP_VERSION=$(NUMERIC_VERSION )$(GIT_HASH ) test \
51+ | tee xcodebuild-$@ .log | xcpretty ; exit " $$ {PIPESTATUS[0]}"
5152
5253.PHONY : build
5354build :
54- xcodebuild $(XCODEBUILD_OPTIONS ) CLASS_DUMP_VERSION=$(NUMERIC_VERSION )$(GIT_HASH ) clean build
55+ xcodebuild $(XCODEBUILD_OPTIONS ) CLASS_DUMP_VERSION=$(NUMERIC_VERSION )$(GIT_HASH ) clean build \
56+ | tee xcodebuild-$@ .log | xcpretty ; exit " $$ {PIPESTATUS[0]}"
5557
5658.PHONY : check
5759check :
You can’t perform that action at this time.
0 commit comments