Skip to content

Commit

Permalink
Use python3 instead of python
Browse files Browse the repository at this point in the history
  • Loading branch information
megaserg authored and sondrelg committed Aug 2, 2024
1 parent 972a0e7 commit 76e04a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -eo pipefail

download_script() {
python -c 'import urllib.request, sys; print(urllib.request.urlopen(f"{sys.argv[1]}").read().decode("utf8"))' $1
python3 -c 'import urllib.request, sys; print(urllib.request.urlopen(f"{sys.argv[1]}").read().decode("utf8"))' $1
}

INSTALL_PATH="${POETRY_HOME:-$HOME/.local}"
Expand Down

0 comments on commit 76e04a9

Please sign in to comment.