Skip to content

Commit

Permalink
bee-list: fix exact pattern matching in combination with displaying p…
Browse files Browse the repository at this point in the history
…athnames
  • Loading branch information
Tobias Dreyer committed Jun 5, 2012
1 parent 503a339 commit 4276beb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bee-list.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4276beb

Please sign in to comment.