File tree 3 files changed +14
-9
lines changed
3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -16,3 +16,4 @@ DerivedData/*
16
16
.DS_Store
17
17
out
18
18
build.log
19
+ build /
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e
3
+ DIR=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd )
4
+ cd $DIR
5
+
1
6
rm -rf build
2
7
mkdir build
3
8
4
- build_failed=0
5
- xcodebuild -configuration Release -sdk iphoneos -project submodules/soomla-ios-core/SoomlaiOSCore.xcodeproj -target SoomlaiOSCore clean build CREATING_UNIVERSAL_DIR=$PWD/build
6
- if [ $? != 0 ]; then
7
- build_failed=1
8
- fi
9
+ submodules/build_all
10
+ cp -r submodules/soomla-ios-core/build/* build/
9
11
xcodebuild -configuration Release -sdk iphoneos -project SoomlaiOSStore.xcodeproj -target SoomlaiOSStore clean build CREATING_UNIVERSAL_DIR=$PWD /build
10
- if [ $? != 0 ]; then
11
- build_failed=1
12
- fi
13
- exit $build_failed
12
+
13
+ cd - > /dev/null
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e
3
+ DIR=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd )
4
+ $DIR /soomla-ios-core/build_all
You can’t perform that action at this time.
0 commit comments