Skip to content

replacing local python use with the variable for asdf #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ install() {

if asdf list python "${REQ_PYTHON_VERSION}"; then
echo "python ${REQ_PYTHON_VERSION} already installed"
asdf local python "${REQ_PYTHON_VERSION}"
else
asdf install python "${REQ_PYTHON_VERSION}"
fi

ASDF_PYTHON_VERSION=${REQ_PYTHON_VERSION}

mkdir -p "$ASDF_INSTALL_PATH/bin" &&
python3 -m venv "$ASDF_INSTALL_PATH/bin/venv" &&
"$ASDF_INSTALL_PATH/bin/venv/bin/python3" -m pip install "$ASDF_DOWNLOAD_PATH/$(get_release_filename)" &&
Expand Down