aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss8
1 files changed, 3 insertions, 5 deletions
diff --git a/kiss b/kiss
index ba657b3..2b59569 100755
--- a/kiss
+++ b/kiss
@@ -589,13 +589,11 @@ pkg_conflicts() {
# Go through the manifest list and filter out the
# package which will be installed.
for manifest; do
- manifest_name=${manifest%/*}
- manifest_name=${manifest_name##*/}
-
shift
- [ "$manifest_name" = "$pkg_name" ] &&
- continue
+ case $manifest in
+ */$pkg_name/manifest) continue
+ esac
set -- "$@" "$manifest"
done