Merge pull request #113 from h3xx/slackware_fix

Fix 0 package count in Slackware
This commit is contained in:
Dylan Araps 2016-02-28 17:38:33 +11:00
commit 2eb6dbf961
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ getpackages () {
elif type -p pacman >/dev/null 2>&1; then
packages="$(pacman -Qq --color never | wc -l)"
elif type -p pkgtool >/dev/null 2>&1; then
elif type -p /sbin/pkgtool >/dev/null 2>&1; then
packages="$(ls -1 /var/log/packages | wc -l)"
elif type -p rpm >/dev/null 2>&1; then