Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Fix shebang length exceeded issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dkalinowski committed Jan 17, 2020
1 parent 8a5a4c8 commit 11d2809
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions python/build_wheel.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ if [ "${PYTHON2_DETECTED}" == 1 ]; then
cd ${BUILD_DIR}
virtualenv -p "$(command -v python)" build/venv2
source build/venv2/bin/activate
pip install --upgrade setuptools pip wheel
python ${SOURCE_DIR}/setup.py bdist_wheel
build/venv2/bin/python build/venv2/bin/pip install --upgrade setuptools pip wheel
build/venv2/bin/python ${SOURCE_DIR}/setup.py bdist_wheel
deactivate
fi

Expand All @@ -47,8 +47,8 @@ if [ "${PYTHON3_DETECTED}" == 1 ]; then
cd ${BUILD_DIR}
virtualenv -p "$(command -v python3)" build/venv3
source build/venv3/bin/activate
pip install --upgrade setuptools pip wheel
python ${SOURCE_DIR}/setup.py bdist_wheel
python ${SOURCE_DIR}/setup.py sdist
build/venv3/bin/python build/venv3/bin/pip install --upgrade setuptools pip wheel
build/venv3/bin/python ${SOURCE_DIR}/setup.py bdist_wheel
build/venv3/bin/python ${SOURCE_DIR}/setup.py sdist
deactivate
fi

0 comments on commit 11d2809

Please sign in to comment.