💥 fix(scripts/utils): Is_installed printing out colorshell exec location
forgot to silent the output :P
This commit is contained in:
+1
-1
@@ -70,7 +70,7 @@ function Ask() {
|
|||||||
function Is_installed() {
|
function Is_installed() {
|
||||||
executable=${@:-"$HOME/.local/bin/colorshell"}
|
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
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user