Adjusting check_updates.sh to comform to new tooling.

This commit is contained in:
emiliano.vavassori 2024-08-23 01:02:32 +02:00
parent 88ede4cb5b
commit 827928b31e
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ if [[ ${retval} -ne 0 ]]; then
fi
pip3 uninstall -y loaih
# build the actual toolkit
python3 setup.py bdist_wheel
pip3 install dist/*.whl; rv=$?
python3 -m build -w
pip3 install dist/loaih*.whl; rv=$?
if [[ -d venv ]]; then
deactivate
fi