Skip to content

Commit

Permalink
Set python executable for Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
hodgestar committed Apr 21, 2021
1 parent 89ef15e commit 8de51db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions proof-of-concept/test_pof.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ _build_wheel() {
echo "Create venv: $VENV"
python -m venv "$VENV"
local PY_BUILDER="`pwd`/$VENV/bin/python3"
if [ -x "`pwd`/$VENV/bin/python.exe" ]

This comment has been minimized.

Copy link
@mattip

mattip Apr 21, 2021

Contributor

I think the exe is $VENV/Scripts/python.exe

then
# Set the correct python executable for Windows
PY_BUILDER="`pwd`/$VENV/bin/python.exe"
fi
echo
echo "Installing hpy and requirements"
_install_hpy ${PY_BUILDER}
Expand Down

0 comments on commit 8de51db

Please sign in to comment.