@@ -433,23 +433,23 @@ function createPackage {
433
433
mkdir -p $HOME /.tmp
434
434
export TMPDIR=$HOME /.tmp
435
435
436
- # FIXME: Temporary fix for latest projectGenerator
436
+ # FIXME:
437
437
# there is no "latest" release so we use nightly. feel free to remove this when PG/Apothecary releases are in sync
438
- if [ " $RELEASE " = " latest" ]; then
439
- RELEASE=" nightly"
440
- fi
438
+ # if [ "$RELEASE" = "latest" ]; then
439
+ # RELEASE="nightly"
440
+ # fi
441
441
442
442
443
443
if [ " $PKG_PLATFORM " = " vs" ] || [ " $PKG_PLATFORM " = " vs2019" ] || [ " $PKG_PLATFORM " = " msys2" ]; then
444
- downloader https://github.com/openframeworks/projectGenerator/releases/download/$RELEASE /projectGenerator-vs-gui.zip 2> /dev/null
444
+ downloader https://github.com/openframeworks/projectGenerator/releases/download/nightly /projectGenerator-vs-gui.zip 2> /dev/null
445
445
mkdir -p projectGenerator
446
446
unzip -q projectGenerator-vs-gui.zip -d " projectGenerator" 2> /dev/null
447
447
rm projectGenerator-vs-gui.zip
448
448
rm -rf apps/projectGenerator
449
449
fi
450
450
451
451
if [ " $PKG_PLATFORM " = " osx" ] || [ " $PKG_PLATFORM " = " ios" ] || [ " $PKG_PLATFORM " = " macos" ]; then
452
- downloader https://github.com/openframeworks/projectGenerator/releases/download/$RELEASE /projectGenerator-osx.zip 2> /dev/null
452
+ downloader https://github.com/openframeworks/projectGenerator/releases/download/nightly /projectGenerator-osx.zip 2> /dev/null
453
453
unzip -q projectGenerator-osx.zip
454
454
mv projectGenerator-osx/ projectGenerator
455
455
rm projectGenerator-osx.zip
@@ -468,12 +468,12 @@ function createPackage {
468
468
if [ " $PKG_PLATFORM " = " android" ]; then
469
469
470
470
if [ " ${LIBS_ABI} " == " windows" ]; then
471
- downloader https://github.com/openframeworks/projectGenerator/releases/download/$RELEASE /projectGenerator-vs-gui.zip 2> /dev/null
471
+ downloader https://github.com/openframeworks/projectGenerator/releases/download/nightly /projectGenerator-vs-gui.zip 2> /dev/null
472
472
unzip -q -d " projectGenerator" projectGenerator-vs-gui.zip 2> /dev/null
473
473
rm projectGenerator-vs-gui.zip
474
474
cd ${PKG_OFROOT}
475
475
elif [ " ${LIBS_ABI} " == " macos" ]; then
476
- downloader https://github.com/openframeworks/projectGenerator/releases/download/$RELEASE /projectGenerator-osx.zip 2> /dev/null
476
+ downloader https://github.com/openframeworks/projectGenerator/releases/download/nightly /projectGenerator-osx.zip 2> /dev/null
477
477
unzip -q projectGenerator-osx.zip
478
478
mv projectGenerator-osx/ projectGenerator
479
479
rm projectGenerator-osx.zip
0 commit comments