From 2e4f969a3a3fc3f1072e9746353b2e9ecf8d8824 Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Thu, 12 Sep 2024 15:27:07 -0400 Subject: [PATCH] fix android build --- setup/setup_native.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/setup_native.sh b/setup/setup_native.sh index 5cf1e4d44..05624a693 100644 --- a/setup/setup_native.sh +++ b/setup/setup_native.sh @@ -57,7 +57,7 @@ if [ $SETUP_IOS ] || ( [ !$SETUP_ANDROID ] && [ !$SETUP_IOS ] ); then export PLATFORMS+=" ios" fi -if [ $SETUP_ANDROID ] || [ [ !$SETUP_ANDROID ] && [ !$SETUP_IOS ] ]; then +if [ $SETUP_ANDROID ] || ( [ !$SETUP_ANDROID ] && [ !$SETUP_IOS ] ); then # we can build android on both ubuntu and OSX # should try both since there may be subtle differences PLATFORM=`uname -a`