Skip to content

Commit fbc5b8c

Browse files
authored
Update create_package.sh
1 parent 5ca9388 commit fbc5b8c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

scripts/dev/create_package.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -433,23 +433,23 @@ function createPackage {
433433
mkdir -p $HOME/.tmp
434434
export TMPDIR=$HOME/.tmp
435435

436-
# FIXME: Temporary fix for latest projectGenerator
436+
# FIXME:
437437
# 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
441441

442442

443443
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
445445
mkdir -p projectGenerator
446446
unzip -q projectGenerator-vs-gui.zip -d "projectGenerator" 2> /dev/null
447447
rm projectGenerator-vs-gui.zip
448448
rm -rf apps/projectGenerator
449449
fi
450450

451451
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
453453
unzip -q projectGenerator-osx.zip
454454
mv projectGenerator-osx/ projectGenerator
455455
rm projectGenerator-osx.zip
@@ -468,12 +468,12 @@ function createPackage {
468468
if [ "$PKG_PLATFORM" = "android" ]; then
469469

470470
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
472472
unzip -q -d "projectGenerator" projectGenerator-vs-gui.zip 2> /dev/null
473473
rm projectGenerator-vs-gui.zip
474474
cd ${PKG_OFROOT}
475475
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
477477
unzip -q projectGenerator-osx.zip
478478
mv projectGenerator-osx/ projectGenerator
479479
rm projectGenerator-osx.zip

0 commit comments

Comments
 (0)