pyscript-bootstrap-templates/build.sh

14 lines
242 B
Bash
Raw Permalink Normal View History

2022-09-11 16:33:43 +02:00
#!/bin/bash
2023-06-04 18:51:06 +02:00
#rm -rf ./dist/
2022-09-11 16:33:43 +02:00
python setup.py bdist_wheel
wheel_files=( dist/*whl )
cd ./examples/
for example in *;
2022-10-16 10:23:01 +02:00
do pyscript_bootstrap_app update $example $example --pyscript-bootstrap-templates-wheel-url ../${wheel_files[0]}
2022-09-11 16:33:43 +02:00
done