blob: 77e5ef5f3564d6edf778ebbe4adc6eafc4be1f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
#VERSION=`date "+%Y.%m.%d"`
VERSION=2010.05
export MACOSX_DEPLOY_DIR=$PWD/../libraries/deploy
`dirname $0`/release-common.sh -v $VERSION
if [[ $? != 0 ]]; then
exit 1
fi
`dirname $0`/macosx-sanity-check.py OpenSCAD.app/Contents/MacOS/OpenSCAD
if [[ $? != 0 ]]; then
exit 1
fi
cp OpenSCAD-$VERSION.dmg ~/Documents/Dropbox/Public
ln -sf OpenSCAD-$VERSION.dmg ~/Documents/Dropbox/Public/OpenSCAD-latest.dmg
echo "Upload in progress..."
|