This commit is contained in:
nyx 2024-10-27 20:47:21 +01:00 committed by GitHub
commit adf6b05ad9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,10 @@ CYAN='\033[36m'
GREEN='\033[32m'
command_exists() {
command -v "$1" >/dev/null 2>&1
for cmd in "$@"; do
command -v "$cmd" >/dev/null 2>&1 || return 1
done
return 0
}
checkAURHelper() {