File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,12 @@ help: ## Display this help message
5858install-poetry : # # Ensure Poetry is installed at the specified version
5959 @if ! command -v ${POETRY} & > /dev/null; then \
6060 echo " Poetry not found. Installing..." ; \
61- ${PIP} install --user poetry==$(POETRY_VERSION ) ; \
61+ ${PIP} install poetry==$(POETRY_VERSION ) ; \
6262 else \
6363 INSTALLED_VERSION=$$(${PIP} show poetry | grep Version | awk '{print $$2}' ) ; \
6464 if [ " $$ INSTALLED_VERSION" != " $( POETRY_VERSION) " ]; then \
6565 echo " Updating Poetry to version $( POETRY_VERSION) ..." ; \
66- ${PIP} install --user -- upgrade poetry==$(POETRY_VERSION ) ; \
66+ ${PIP} install --upgrade poetry==$(POETRY_VERSION ) ; \
6767 else \
6868 echo " Poetry version $( POETRY_VERSION) already installed." ; \
6969 fi ; \
You can’t perform that action at this time.
0 commit comments