From 1bd457bd837ea53591a16ae1685e47271ac77336 Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Sun, 26 Oct 2025 16:16:30 -0300 Subject: [PATCH] :boom: fix(scripts/utils): `Is_installed` printing out colorshell exec location forgot to silent the output :P --- scripts/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.sh b/scripts/utils.sh index 36678bb..6d1d3d3 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -70,7 +70,7 @@ function Ask() { function Is_installed() { executable=${@:-"$HOME/.local/bin/colorshell"} - if command -v colorshell || [[ -f $executable ]]; then + if command -v colorshell > /dev/null 2>&1 || [[ -f $executable ]]; then return 0 fi