From c89449977d08ce5b60fd08c2f2c7a89dc899261b Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 16 Apr 2009 13:06:21 +0200 Subject: pkg: Fixed a bug in pkg list remote Under certain circumstances, packages were left out --- bin/pkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pkg b/bin/pkg index 8682266..87aea1a 100755 --- a/bin/pkg +++ b/bin/pkg @@ -719,7 +719,7 @@ function pkg_list { ;; not-installed) while read package crap; do - grep "^$package" $PDIR/.list &> /dev/null || echo $package + grep "^$package " $PDIR/.list &> /dev/null || echo $package done < $PDIR/.list-remote ;; esac -- cgit v1.2.3