From 2145b79d17dfb9fe4b21b5cc8373b36ec0d086d2 Mon Sep 17 00:00:00 2001 From: Justin Merrell Date: Tue, 24 Jan 2023 23:55:49 -0500 Subject: [PATCH] fix: installer --- installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.sh b/installer.sh index 3a5da53..062f25d 100644 --- a/installer.sh +++ b/installer.sh @@ -51,11 +51,11 @@ while getopts ":hbdu" flags; do esac done -if [ $DEBUG ]; then +if [ "$DEBUG" = true ]; then BRANCH='dev-release' URL='dev.recursion.space' API_URL='dev.api.recursion.space' -elif ! [ $DEBUG ]; then +else BRANCH='release' URL='recursion.space' API_URL='api.recursion.space'