From f963f1866c09daf26181a7ece0780cbed539d213 Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 2 Sep 2020 18:03:01 -0500 Subject: [PATCH] Correct wrong package manager for previous commit whups --- localhost-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localhost-deploy.sh b/localhost-deploy.sh index d10bde6..9f10373 100755 --- a/localhost-deploy.sh +++ b/localhost-deploy.sh @@ -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