aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xkiss5
1 files changed, 3 insertions, 2 deletions
diff --git a/kiss b/kiss
index 5f3e440..932672e 100755
--- a/kiss
+++ b/kiss
@@ -12,6 +12,7 @@ log() {
}
source_type() {
+ [ -z "$1" ] && return 1 # No file.
[ -f "$1" ] && return 2 # Local file.
[ -f "$src_dir/${1##*/}" ] && return 3 # Cached downloaded file.
[ -z "${1##git:*}" ] && return 4 # Git repository.
@@ -50,8 +51,8 @@ pkg_depends() {
[ "$1" = install ] && [ "$opt" = make ] && continue
case $missing in
- *" $dep${opt:+ ($opt)},"*) ;;
- *) missing="$missing $dep${opt:+ ($opt)},"
+ *" $dep,"*) ;;
+ *) missing="$missing $dep,"
pkg_setup "$dep"
pkg_depends ;;
esac