fixes to final dist of 0070

This commit is contained in:
benfry
2004-09-30 03:51:55 +00:00
parent fb6fb99312
commit 425e4018a9
3 changed files with 9 additions and 3 deletions

View File

@@ -6,13 +6,15 @@ then
# old 4 char version.. osx only uses the two chars
#REVISION=`head -c 4 ../../todo.txt`
# a more useful version of head than what's included with osx
REVISION=`head -c 4 ../../todo.txt | tail -c 2`
#REVISION=`head -c 4 ../../todo.txt | tail -c 2`
REVISION=`head -c 4 ../../todo.txt`
else
# can't get four bytes of head (osx doesn't support -c)
REVISION=0000
fi
VERSIONED=`cat ../../app/PdeBase.java | grep 00$REVISION`
#VERSIONED=`cat ../../app/PdeBase.java | grep 00$REVISION`
VERSIONED=`cat ../../app/PdeBase.java | grep $REVISION`
if [ -z "$VERSIONED" ]
then
echo Fix the revision number in PdeBase.java
@@ -101,7 +103,10 @@ find processing -name "._*" -exec rm -f {} ';'
find processing -name "CVS" -exec rm -rf {} ';'
# zip it all up for release
mv processing "Processing $REVISION"
#mv processing "Processing $REVISION"
mv processing "processing-$REVISION"
stuff -f sitx processing-$REVISION
# if there is a command line tool to make a dmg from this dir.. hmm

Binary file not shown.

View File

@@ -106,6 +106,7 @@ zip -0rq ../lib/pde.jar .
cd ../..
# get the libs
mkdir -p work/Processing.app/Contents/Resources/Java/
cp work/lib/*.jar work/Processing.app/Contents/Resources/Java/