diff --git a/build/macosx/dist.sh b/build/macosx/dist.sh index 70c347266..daed32559 100755 --- a/build/macosx/dist.sh +++ b/build/macosx/dist.sh @@ -6,7 +6,7 @@ REVISION=`head -1 ../../todo.txt | cut -c 1-4` # as of 100, just use 0100 everywhere to avoid confusion SHORT_REVISION=$REVISION -VERSIONED=`cat ../../app/Base.java | grep $REVISION` +VERSIONED=`cat ../../app/src/processing/app/Base.java | grep $REVISION` if [ -z "$VERSIONED" ] then echo Fix the revision number in Base.java diff --git a/build/windows/dist.sh b/build/windows/dist.sh index 33f9d46a6..8cbc5b28f 100755 --- a/build/windows/dist.sh +++ b/build/windows/dist.sh @@ -4,7 +4,7 @@ REVISION=`head -c 4 ../../todo.txt` # check to see if the version number in the app is correct # so that mikkel doesn't kick my ass -VERSIONED=`cat ../../app/Base.java | grep $REVISION` +VERSIONED=`cat ../../app/src/processing/app/Base.java | grep $REVISION` if [ -z "$VERSIONED" ] then echo Fix the revision number in Base.java