pyscript-bootstrap-templates/build.sh
2022-10-16 10:23:01 +02:00

14 lines
241 B
Bash
Executable File

#!/bin/bash
rm -rf ./dist/
python setup.py bdist_wheel
wheel_files=( dist/*whl )
cd ./examples/
for example in *;
do pyscript_bootstrap_app update $example $example --pyscript-bootstrap-templates-wheel-url ../${wheel_files[0]}
done