💥 fix(scripts/utils): Is_installed printing out colorshell exec location

forgot to silent the output :P
This commit is contained in:
retrozinndev
2025-10-26 16:16:30 -03:00
parent cf34bb963f
commit 1bd457bd83
+1 -1
View File
@@ -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