From faa413eb0e76fad87875b7680f77e0c43df694cd Mon Sep 17 00:00:00 2001 From: luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> Date: Wed, 26 Jan 2022 18:17:00 -0500 Subject: Fix build.sh on macOS --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 98f6249..a1671fd 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ CCOPT= CXXOPT= # error if devkitarm is not installed and binutils-arm-none-eabi is not installed -if ! ([ -v DEVKITARM ] && [ -d "$DEVKITARM/bin" ]) && ! (command -v arm-none-eabi-as &> /dev/null && command -v arm-none-eabi-ar &> /dev/null) ; then +if ! ([ -n "$DEVKITARM" ] && [ -d "$DEVKITARM/bin" ]) && ! (command -v arm-none-eabi-as &> /dev/null && command -v arm-none-eabi-ar &> /dev/null) ; then echo "Could not find a binutils installation! Re-read the instructions and make sure you've installed either devkitARM or binutils-arm-none-eabi, depending on your system." exit 1 fi -- cgit v1.2.3