Correct wrong package manager for previous commit

whups
This commit is contained in:
Salt 2020-09-02 18:03:01 -05:00
parent 975b2ea938
commit f963f1866c

View File

@ -12,7 +12,7 @@ if ! command -v ansible > /dev/null 2>&1; then
if command -v apt > /dev/null 2>&1; then
printf "Installing via APT\n"
sudo apt-get install python3-pip python3-setuptools -y
elif command -v pkg > /dev/null 2>&1; then
elif command -v apk > /dev/null 2>&1; then
printf "Installing via APK\n"
sudo apk add py3-pip py3-setuptools
fi