Commit f310d757 authored by Adam Jimerson's avatar Adam Jimerson

Switch from if -> case for BSD package counts

parent 01ce345c
...@@ -695,16 +695,18 @@ getpackages () { ...@@ -695,16 +695,18 @@ getpackages () {
;; ;;
"BSD") "BSD")
# PacBSD has both pacman and pkg, but only pacman is used case "$distro" in
if [[ "$distro" == "PacBSD"* ]]; then # PacBSD has both pacman and pkg, but only pacman is used
packages="$(pacman -Qq --color never | wc -l)" "PacBSD"*) packages="$(pacman -Qq --color never | wc -l)" ;;
else
if type -p pkg_info >/dev/null 2>&1; then *)
packages="$(pkg_info | wc -l)" if type -p pkg_info >/dev/null 2>&1; then
elif type -p pkg >/dev/null 2>&1; then packages="$(pkg_info | wc -l)"
packages="$(pkg info | wc -l)" elif type -p pkg >/dev/null 2>&1; then
fi packages="$(pkg info | wc -l)"
fi fi
;;
esac
;; ;;
"Windows") "Windows")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment