From 17ef14cc8485cff8d994a941ad42fc7d5558c5b7 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Sat, 16 Aug 2025 21:46:58 -0300 Subject: [PATCH] :boom: fix(install): correctly check if it's in standalone mode --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5030e3a..7147966 100755 --- a/install.sh +++ b/install.sh @@ -13,7 +13,7 @@ skip_prompts=`[[ "$@" =~ -y ]] && echo -n true` is_standalone=`(git remote -v > /dev/null 2>&1) || echo -n true` temp_dir="$XDG_CACHE_HOME/colorshell-installer" -repo_directory=`"$is_standalone" && echo -n "$temp_dir/repo" || echo -n "."` +repo_directory=`[[ "$is_standalone" ]] && echo -n "$temp_dir/repo" || echo -n "."` # source utils script before installation