From 76e04a911780d5b312d89783f7b1cd627778900a Mon Sep 17 00:00:00 2001 From: Sergey Serebryakov <1047261+megaserg@users.noreply.github.com> Date: Thu, 1 Aug 2024 18:15:50 +0100 Subject: [PATCH] Use `python3` instead of `python` --- main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.sh b/main.sh index d3e3717f..1fa75152 100755 --- a/main.sh +++ b/main.sh @@ -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}"