Skip to content

Commit 8149af9

Browse files
committed
chmod executable
1 parent 382fab2 commit 8149af9

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

scripts/dev/create_package.sh

+12-11
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ function createPackage {
337337

338338
#download external dependencies
339339
cd $pkg_ofroot/
340+
echo " Location: {$pkg_ofroot}"
340341
if [ "$pkg_platform" = "osx" ]; then
341342
scripts/osx/download_latest_libs.sh
342343
scripts/emscripten/download_libs.sh -n
@@ -354,7 +355,7 @@ function createPackage {
354355
scripts/emscripten/download_libs.sh -n
355356
elif [ "$pkg_platform" = "vs" ]; then
356357
if [ $min_package == 1 ]; then
357-
scripts/vs/download_latest_libs_x64.sh
358+
./scripts/vs/download_latest_libs_x64.sh
358359
else
359360
scripts/vs/download_latest_libs.sh
360361
fi
@@ -459,21 +460,21 @@ function createPackage {
459460
fi
460461

461462
if [ "$pkg_platform" = "android" ]; then
462-
cd ${pkg_ofroot}/apps/projectGenerator/frontend
463-
npm install > /dev/null
464-
npm run build:vs > /dev/null
465-
mv dist/projectGenerator-win32-ia32 ${pkg_ofroot}/projectGenerator-windows
466-
cd ${pkg_ofroot}/projectGenerator-windows/resources/app/app/
463+
# cd ${pkg_ofroot}/apps/projectGenerator/frontend
464+
# npm install > /dev/null
465+
# npm run build:vs > /dev/null
466+
# mv dist/projectGenerator-win32-ia32 ${pkg_ofroot}/projectGenerator-windows
467+
# cd ${pkg_ofroot}/projectGenerator-windows/resources/app/app/
467468
downloader https://github.com/openframeworks/projectGenerator/releases/download/nightly/projectGenerator-vs-gui.zip 2> /dev/null
468469
unzip -d "projectGenerator" projectGenerator-vs-gui.zip 2> /dev/null
469470
rm projectGenerator-vs-gui.zip
470471
cd ${pkg_ofroot}
471472

472-
cd ${pkg_ofroot}/apps/projectGenerator/frontend
473-
npm install > /dev/null
474-
npm run build:linux64 > /dev/null
475-
mv dist/projectGenerator-linux-x64 ${pkg_ofroot}/projectGenerator-linux64
476-
cd ${pkg_ofroot}
473+
# cd ${pkg_ofroot}/apps/projectGenerator/frontend
474+
# npm install > /dev/null
475+
# npm run build:linux64 > /dev/null
476+
# mv dist/projectGenerator-linux-x64 ${pkg_ofroot}/projectGenerator-linux64
477+
# cd ${pkg_ofroot}
477478
fi
478479

479480
# linux remove other platform projects from PG source and copy ofxGui

0 commit comments

Comments
 (0)