mirror of
https://github.com/rworkman/slackpkg
synced 2024-11-17 07:48:12 +01:00
Fix "slackpkg blacklist" so that it shows blacklist again
This commit is contained in:
parent
3ea13bebcb
commit
0635933b1e
1 changed files with 5 additions and 1 deletions
|
@ -238,6 +238,10 @@ while [ -n "$1" ] ; do
|
|||
fi
|
||||
shift $#
|
||||
;;
|
||||
blacklist)
|
||||
CMD=$1
|
||||
shift $#
|
||||
;;
|
||||
update)
|
||||
CMD=$1
|
||||
shift
|
||||
|
@ -477,7 +481,7 @@ case "$CMD" in
|
|||
# all blacklisted packages
|
||||
if [ "$INPUTLIST" = "" ]; then
|
||||
echo -e "Packages in blacklist:\n"
|
||||
grep -e "^\([a-z]\)" $CONF/blacklist | $MORECMD
|
||||
grep -v "^#" $CONF/blacklist | $MORECMD
|
||||
cleanup
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue