File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
33cd $SCRIPT_DIR
4- ../dev/download_libs.sh -p android $@
4+ ../dev/download_libs.sh -p android -b $@
Original file line number Diff line number Diff line change 88SILENT_ARGS=" "
99NO_SSL=" "
1010BLEEDING_EDGE=0
11- DL_VERSION=2.6.4
11+ DL_VERSION=2.6.5
1212TAG=" "
1313
1414printHelp (){
@@ -294,8 +294,7 @@ elif [ "$ARCH" == "" ] && [ "$PLATFORM" == "android" ]; then
294294 if [[ $BLEEDING_EDGE = 1 ]] ; then
295295 PKGS=" openFrameworksLibs_${VER} _${PLATFORM} _armv7.tar.bz2 \
296296 openFrameworksLibs_${VER} _${PLATFORM} _arm64.tar.bz2 \
297- openFrameworksLibs_${VER} _${PLATFORM} _x86_64.tar.bz2
298- openFrameworksLibs_${VER} _${PLATFORM} _x86.tar.bz2"
297+ openFrameworksLibs_${VER} _${PLATFORM} _x86_64.tar.bz2"
299298 else
300299 PKGS=" openFrameworksLibs_${VER} _${PLATFORM} armv7.tar.bz2 \
301300 openFrameworksLibs_${VER} _${PLATFORM} arm64.tar.bz2 \
Original file line number Diff line number Diff line change 11#! /bin/bash
22# pipe commands to core openFrameworks scripts
3- OF_SCRIPT_VERSION=0.2.1
3+ OF_SCRIPT_VERSION=0.2.2
44# Dan Rosser 2025
55OF_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
66OF_DIR=" $( realpath " $OF_DIR /../" ) "
@@ -9,7 +9,7 @@ OF_CORE_CI_SCRIPT_DIR="$(realpath "$OF_DIR/scripts/ci")"
99OF_PG_INSTALLED_DIR=" $( realpath " $OF_DIR /projectGenerator" ) "
1010VERBOSE=${VERBOSE:- 0}
1111echoVerbose () {
12- if [[ -n " $VERBOSE " ]]; then
12+ if [[ " $VERBOSE " = 1 ]]; then
1313 echo " $@ "
1414 fi
1515}
@@ -75,6 +75,7 @@ Usage: $0 <command> [subcommand] [options]
7575Commands:
7676 update [subcommand] Update openFrameworks components
7777 libs Download openFrameworks libraries (default)
78+ libs [platform] i.e update libs ios
7879 pg | projectgenerator Download Project Generator
7980
8081 version [subcommand] Show version information
@@ -126,7 +127,7 @@ runCommand() {
126127 SCRIPT=" ${OF_CORE_SCRIPT_DIR} /${PLATFORM_DIR} /download_projectGenerator.sh"
127128 ;;
128129 * )
129- SCRIPT=" ${OF_CORE_SCRIPT_DIR} /${PLATFORM_DIR} /download_libs.sh" " "
130+ SCRIPT=" ${OF_CORE_SCRIPT_DIR} /${PLATFORM_DIR} /download_libs.sh"
130131 exit 1
131132 ;;
132133 esac
You can’t perform that action at this time.
0 commit comments