mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 10:55:38 +01:00
fixes to final dist of 0070
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
BIN
processing/build/macosx/dist/DS_Store
vendored
BIN
processing/build/macosx/dist/DS_Store
vendored
Binary file not shown.
@@ -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/
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user