IOPaint/publish.sh
2024-08-20 21:22:40 +02:00

13 lines
191 B
Bash
Executable File

#!/usr/bin/env bash
set -e
pushd ./web_app
rm -r -f dist
npm run build
popd
rm -r -f ./inpaint/web_app
cp -r web_app/dist ./inpaint/web_app
rm -r -f dist
python3 setup.py sdist bdist_wheel