mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
working... working...
This commit is contained in:
@@ -2,16 +2,20 @@
|
||||
|
||||
REVISION=`head -c 4 ../../todo.txt`
|
||||
|
||||
ARCH=`uname -m`
|
||||
if [ $ARCH != "i686" ]
|
||||
ARCH=`uname`
|
||||
if [ $ARCH == "Darwin" ]
|
||||
then
|
||||
echo At present, the Linux distribution can only be built on i686 \(32-bit\).
|
||||
exit
|
||||
PLATFORM=macosx
|
||||
elif [ $ARCH == "Cygwin" ]
|
||||
then
|
||||
PLATFORM=windows
|
||||
else
|
||||
PLATFORM=linux
|
||||
fi
|
||||
|
||||
./make.sh
|
||||
|
||||
echo Creating linux distribution for revision $REVISION...
|
||||
echo Creating command-line distribution for revision $REVISION...
|
||||
|
||||
# remove any old boogers
|
||||
rm -rf processing
|
||||
|
||||
5
build/cmd/dist/processing
vendored
5
build/cmd/dist/processing
vendored
@@ -1,7 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
APPDIR="$(dirname -- "${0}")"
|
||||
|
||||
|
||||
# includes java/* in case a Java install is available
|
||||
for LIB in \
|
||||
java/lib/rt.jar \
|
||||
java/lib/tools.jar \
|
||||
@@ -14,4 +15,4 @@ export CLASSPATH
|
||||
|
||||
export PATH="${APPDIR}/java/bin:${PATH}"
|
||||
|
||||
java processing.app.Base
|
||||
java processing.app.Commander $*
|
||||
|
||||
Reference in New Issue
Block a user