From 1e14b794a3dc2fd6c4183d7ece5659cd3c0b3962 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 19 Jul 2021 10:25:15 +0300 Subject: [PATCH] kiss: fix too strict install check --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index 90993e9..31d2a4c 100755 --- a/kiss +++ b/kiss @@ -1364,7 +1364,7 @@ pkg_installable() { ! [ -f "$2" ] || while read -r dep dep_type || ok "$dep"; do - case $dep-$dep_type in [!\#]?*) + case "$dep $dep_type" in [!\#]?*\ ) ! [ -d "$sys_db/$dep" ] || continue printf '%s %s\n' "$dep" "$dep_type"