14 lines
485 B
Bash
Executable File
14 lines
485 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Note:
|
|
# This script is meant to be run from the root of the working copy.
|
|
#
|
|
# This script makes the actual .dmg and dSYM bundle. It is very important to keep the dSYM bundle with it's .dmg; it contains irreplaceable debug info (and, no another build even made right after will not work).
|
|
|
|
# Config
|
|
|
|
cd macosx
|
|
|
|
xcodebuild -project Warzone.xcodeproj -parallelizeTargets -target "Make DMGs for Release" -configuration "Release" -PBXBuildsContinueAfterErrors=NO
|
|
exit ${?}
|