diff options
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh index 7f6c266..9bad86c 100755 --- a/install.sh +++ b/install.sh @@ -39,7 +39,7 @@ echo "Installing, this may take some time...." # Fedora with the terra repo (Ultramarine) has keyd packaged [ "$distro" = "fedora" ] && dnf4 info keyd -y&>> pkg.log && FEDORA_HAS_KEYD=1 -if ! [ -f /usr/bin/keyd ]; then +if [ -z "$(which keyd 2>/dev/null)" ]; then # if keyd isnt installed echo "Installing keyd dependencies" case $distro in |