mirror of
https://github.com/daijro/camoufox.git
synced 2026-08-19 00:00:58 +00:00
13 lines
206 B
Bash
13 lines
206 B
Bash
rm -rf ./dist
|
|
rm -rf ./camoufox/*.mmdb
|
|
rm -rf ./camoufox/*.png
|
|
|
|
python -m build
|
|
twine check dist/*
|
|
|
|
read -p "Confirm publish? (y/n) " -n 1 -r
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
twine upload dist/*
|
|
fi
|