From 31090bdfd4d249ecc67515e91e81242f1a1f73a0 Mon Sep 17 00:00:00 2001 From: Lucy Cifferello <12953208+elvece@users.noreply.github.com> Date: Thu, 12 Jan 2023 16:17:04 -0700 Subject: [PATCH] update poetry installation location --- site/_utils/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/_utils/setup.sh b/site/_utils/setup.sh index 96826f3..b5d02b5 100755 --- a/site/_utils/setup.sh +++ b/site/_utils/setup.sh @@ -6,7 +6,7 @@ if pwd | egrep -q '\s'; then fi which python3 || { echo "Failed to find python3. Try installing Python for your operative system: https://www.python.org/downloads/" && exit 1; } -which poetry || curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 - && source ${HOME}/.poetry/env +which poetry || curl -sSL https://install.python-poetry.org | python3 - poetry install poetry update