Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function build_example {
-sdk "$SDK" \
-destination "$PLATFORM" \
-derivedDataPath "$DERIVED_DATA_PATH" \
build | xcpretty -s
build
elif [ -f "${example}/Cartfile" ]; then
echo "Using Carthage"
local_repo=`pwd`
Expand All @@ -58,7 +58,7 @@ function build_example {
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build

cd ../..
fi
Expand Down Expand Up @@ -88,7 +88,7 @@ tests|all)
-scheme AsyncDisplayKit \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test | xcpretty -s
build-for-testing test
success="1"
;;

Expand All @@ -107,7 +107,7 @@ tests_listkit)
-scheme ASDKListKitTests \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test | xcpretty -s
build-for-testing test
success="1"
;;

Expand Down Expand Up @@ -206,7 +206,7 @@ life-without-cocoapods|all)
-scheme "Life Without CocoaPods" \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build
success="1"
;;

Expand All @@ -218,7 +218,7 @@ framework|all)
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build
success="1"
;;

Expand Down