IOPaint/publish.sh

13 lines
191 B
Bash
Raw Permalink Normal View History

2022-04-18 09:01:10 +02:00
#!/usr/bin/env bash
set -e
2023-12-30 16:36:44 +01:00
pushd ./web_app
2024-02-27 13:19:35 +01:00
rm -r -f dist
2023-12-30 16:36:44 +01:00
npm run build
2022-04-18 09:01:10 +02:00
popd
2024-02-27 13:19:35 +01:00
rm -r -f ./iopaint/web_app
2024-01-05 08:19:23 +01:00
cp -r web_app/dist ./iopaint/web_app
2022-04-18 09:01:10 +02:00
rm -r -f dist
python3 setup.py sdist bdist_wheel