Implement support for apt.
parent
83ca618251
commit
46d02da26e
|
@ -72,6 +72,7 @@ fi
|
|||
# package manager detection
|
||||
|
||||
for pm in \
|
||||
apt-get \
|
||||
pacaur \
|
||||
pacman \
|
||||
pip \
|
||||
|
@ -81,7 +82,14 @@ for pm in \
|
|||
yay \
|
||||
; do
|
||||
if has_binary "$pm"; then
|
||||
case "$pm" in
|
||||
apt-get)
|
||||
add_tag "pm:apt"
|
||||
;;
|
||||
*)
|
||||
add_tag "pm:$pm"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue