Skip to content

Commit 60de346

Browse files
authored
download_libs.sh force latest. better fix for RPI
1 parent 5cea0bc commit 60de346

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/dev/download_libs.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ download(){
5050
REPO="nightly"
5151
fi
5252

53+
#FIXME: remove later, now forcing "latest"
54+
REPO="latest"
55+
5356

5457
if [[ $TAG != "" ]] ; then
5558
REPO="$TAG"
@@ -362,7 +365,7 @@ for PKG in $PKGS; do
362365
# FIXME: this if can be removed after this is fixed properly on apothecary, see:
363366
# https://github.com/openframeworks/openFrameworks/issues/8206
364367

365-
if [ "$PLATFORM" == "linux" && [ [ "$ARCH" == "aarch64" ] || [ "$ARCH" == "armv7l" ] || [ "$ARCH" == "armv6l" ] ] ]; then
368+
if [ "$PLATFORM" == "linux" ] && { [ "$ARCH" == "aarch64" ] || [ "$ARCH" == "armv7l" ] || [ "$ARCH" == "armv6l" ]; }; then
366369
echo "tar xjfv download/$PKG --strip-components=1"
367370
tar xjf download/$PKG --strip-components=1
368371
else

0 commit comments

Comments
 (0)