- Fixed an issue with TAG_PRIORITY enabled.

- SHOWORDER is bugged. Temporary disabled.
This commit is contained in:
Matteo Rossini 2015-12-21 22:56:26 +01:00
parent 3098138f3f
commit dc3105e9ff
2 changed files with 3 additions and 1 deletions

View file

@ -384,6 +384,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then
unset NAME
unset FULLNAME
unset PKGDATA
unset LINEIDX
AUTOP=no
if [[ "$CMD" == "upgrade" || "$CMD" == "upgrade-all" ]];then

View file

@ -40,7 +40,8 @@ if [ "$SLACKPKGPLUS" = "on" ];then
if [ "$2" = "upgrade" ]; then
ls -1 $ROOT/var/log/packages > $TMPDIR/tmplist
for i in $(for x in $1; do echo $x;done|grep -f - $TMPDIR/pkglist.sort); do
#for i in $(for x in $1; do echo $x;done|grep -f - $TMPDIR/pkglist.sort); do
for i in $1; do
TMPONOFF=$ONOFF
BASENAME=$(cutpkg $i)
PKGFOUND=$(grep -m1 -e "^${BASENAME}-[^-]\+-[^-]\+-[^-]\+$" $TMPDIR/tmplist)