From eb9422e12a96bea1c0f6e3b9889653d15c5662e9 Mon Sep 17 00:00:00 2001 From: Sam Roeca Date: Mon, 21 Sep 2020 12:17:43 -0700 Subject: [PATCH] Prevents get-poetry.py from modifying $PATH This is not necessary when using asdf since asdf manages the PATH. This will prevent dotfiles from getting annoyingly modified when installing new versions of poetry. See: https://github.com/python-poetry/poetry/blob/master/get-poetry.py#L1024 --- bin/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install b/bin/install index a4705ba..8b35165 100755 --- a/bin/install +++ b/bin/install @@ -2,4 +2,4 @@ set -e -curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_HOME=$ASDF_INSTALL_PATH python - --version $ASDF_INSTALL_VERSION +curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_HOME=$ASDF_INSTALL_PATH python - --version $ASDF_INSTALL_VERSION --no-modify-path