IOPaint/publish.sh

12 lines
174 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
npm run build
2022-04-18 09:01:10 +02:00
popd
2024-01-05 08:19:23 +01:00
rm -r ./iopaint/web_app
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