File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 33cd " $( dirname ${BASH_SOURCE[0]} ) "
44
55echo " Building backwards-compatible tev..."
6- mkdir build-dmg && cd build-dmg
6+
7+ BUILD_DIR=" build-dmg"
8+
9+ mkdir $BUILD_DIR && cd $BUILD_DIR
710MACOSX_DEPLOYMENT_TARGET=10.9
811cmake \
912 -DCMAKE_OSX_SYSROOT=/Users/tom94/Projects/MacOSX-SDKs/MacOSX10.9.sdk/ \
1619echo " Creating dmg..."
1720RESULT=" ../tev.dmg"
1821test -f $RESULT && rm $RESULT
19- ./create-dmg/create-dmg --window-size 500 300 --icon-size 96 --volname " tev Installer" --app-drop-link 360 105 --icon tev.app 130 105 $RESULT ./build-dmg /tev.app
22+ ./create-dmg/create-dmg --window-size 500 300 --icon-size 96 --volname " tev Installer" --app-drop-link 360 105 --icon tev.app 130 105 $RESULT $BUILD_DIR /tev.app
2023
2124echo " Removing temporary build dir..."
22- rm -rf build-dmg
25+ rm -rf $BUILD_DIR
You can’t perform that action at this time.
0 commit comments