Add zypper support and fix acorn

This commit is contained in:
2020-09-27 21:50:25 -07:00
parent 677809a735
commit dc868385e4
3 changed files with 31 additions and 2 deletions

View File

@@ -1 +1,13 @@
make install
if command -v apt &> /dev/null; then
make aptinstall
elif command -v aptitude &> /dev/null; then
make aptitude
elif command -v brew &> /dev/null; then
make brewinstall
elif command -v zypper &> /dev/null; then
make zyppinstall
elif command -v yay &> /dev/null; then
make yayinstall
elif command -v pacman &> /dev/null; then
make pacinstall
fi