Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sondrelg committed Sep 29, 2022
1 parent bf2371e commit 2173beb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.sh
Expand Up @@ -6,7 +6,7 @@ curl -sSL https://install.python-poetry.org/ --output "$installation_script"
if [ "${RUNNER_OS}" == "Windows" ]; then
path="C:/Users/runneradmin/AppData/Roaming/Python/Scripts"
else
path="$HOME/.local/"
path="$HOME/.local"
fi

echo -e "\n\033[33mSetting Poetry installation path as $path\033[0m\n"
Expand All @@ -24,7 +24,7 @@ export PATH="$path/bin:$PATH"
if [ "${RUNNER_OS}" == "Windows" ]; then
poetry_="$path/bin/poetry.exe"
else
poetry_=poetry
poetry_="$path/bin/poetry"
fi

# Expand any "~" in VIRTUALENVS_PATH
Expand Down

0 comments on commit 2173beb

Please sign in to comment.