aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xkiss3
1 files changed, 1 insertions, 2 deletions
diff --git a/kiss b/kiss
index ddd57d9..8bf9881 100755
--- a/kiss
+++ b/kiss
@@ -181,8 +181,7 @@ pkg_depends() {
# Recurse through the dependencies of the child
# packages. Keep doing this.
while read -r dep _; do
- [ "${dep##\#*}" ] || continue
- pkg_depends "$dep" ||:
+ [ "${dep##\#*}" ] && pkg_depends "$dep"
done 2>/dev/null < "$(pkg_find "$1")/depends" ||:
# After child dependencies are added to the list,