mirror of
https://github.com/zuno/slackpkgplus
synced 2024-12-26 09:58:43 +01:00
- Fixed an issue with TAG_PRIORITY enabled.
- SHOWORDER is bugged. Temporary disabled.
This commit is contained in:
parent
3098138f3f
commit
dc3105e9ff
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue