Skip to content

Commit

Permalink
Fixes for build break on windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoyt Koepke committed Jun 24, 2024
1 parent 403caaf commit 439701e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/pyxet/scripts/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ create_venv() {
>&2 echo "Python version = $("$python_executable" --version)"
>&2 "$python_executable" -m venv "./$venv_name"

[[ -e "./$venv_name" ]] || exit 1
[[ -e "./$venv_name" ]] || exit 1
fi

source $(venv_activate_script $venv_name)
export _PYXET_BUILD_VIRTUAL_ENV=$venv_name
fi
source $(venv_activate_script $venv_name)
export _PYXET_BUILD_VIRTUAL_ENV=$venv_name

# Make sure it's up to par.
>&2 pip install --upgrade pip
Expand Down

0 comments on commit 439701e

Please sign in to comment.