diff options
-rwxr-xr-x | scripts/publish-macosx.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/publish-macosx.sh b/scripts/publish-macosx.sh index 95062ac..b01d7f0 100755 --- a/scripts/publish-macosx.sh +++ b/scripts/publish-macosx.sh @@ -3,12 +3,15 @@ VERSION=`date "+%Y.%m.%d"` #VERSION=2010.05 -export MACOSX_DEPLOY_DIR=$PWD/../libraries/deploy +# This is the same location as DEPLOYDIR in macosx-build-dependencies.sh +export MACOSX_DEPLOY_DIR=$PWD/../libraries/install `dirname $0`/release-common.sh -v $VERSION if [[ $? != 0 ]]; then exit 1 fi + +echo "Sanity check of the app bundle..." `dirname $0`/macosx-sanity-check.py OpenSCAD.app/Contents/MacOS/OpenSCAD if [[ $? != 0 ]]; then exit 1 |