From 4276bebbe1c83c676b8283fc5f96cf1c4567837c Mon Sep 17 00:00:00 2001 From: Tobias Dreyer Date: Tue, 5 Jun 2012 15:27:42 +0200 Subject: [PATCH] bee-list: fix exact pattern matching in combination with displaying pathnames --- src/bee-list.sh.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bee-list.sh.in b/src/bee-list.sh.in index 6623fe4..f748f77 100644 --- a/src/bee-list.sh.in +++ b/src/bee-list.sh.in @@ -207,7 +207,8 @@ function bee_list_exact() { fi for p in $(list_beepackages "${filter}" ${1}) ; do - if [ "${1}" = "${p}" ] ; then + pall=$(@BINDIR@/beeversion --pkgallpkg "${p}") + if [ "${1}" = "${pall}" ] ; then echo "${p}" continue fi