diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-27 10:57:53 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-27 10:57:53 +0000 |
commit | a810d89092c9c8dea66d74630b80c55f3dce9382 (patch) | |
tree | e75ab2d6f5ce5546515b78d940b235b4f5c38c15 /Scripts/build.sh | |
parent | 80977d353eef6a6b3f48bfd3e18d80e94c3c3c71 (diff) | |
download | sequelpro-a810d89092c9c8dea66d74630b80c55f3dce9382.tar.gz sequelpro-a810d89092c9c8dea66d74630b80c55f3dce9382.tar.bz2 sequelpro-a810d89092c9c8dea66d74630b80c55f3dce9382.zip |
• added first Default Bundle and procedure to copy them into BUILD_PRODUCT/Contents/SharedSupport done in build.sh while compiling
Diffstat (limited to 'Scripts/build.sh')
-rwxr-xr-x | Scripts/build.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Scripts/build.sh b/Scripts/build.sh index 82c788de..409ec419 100755 --- a/Scripts/build.sh +++ b/Scripts/build.sh @@ -42,6 +42,12 @@ then "${SRCROOT}/Scripts/trim-application.sh" -p "$BUILD_PRODUCT" -a fi +# Copy all Default Bundles to build product +rm -rf "${BUILD_PRODUCT}/Contents/SharedSupport/Default Bundles" +mkdir "${BUILD_PRODUCT}/Contents/SharedSupport" +mkdir "${BUILD_PRODUCT}/Contents/SharedSupport/Default Bundles" +cp -R "${SRCROOT}/SharedSupport/Default Bundles" "${BUILD_PRODUCT}/Contents/SharedSupport" + # Perform distribution specific tasks if this is a 'Distribution' build if [ "$CONFIGURATION" == 'Distribution' ] then |