hyfetch/tools/deploy.sh
Azalea (on HyDEV-Daisy) 7e59c362be
[F] Fix deploy script
2022-10-04 13:10:00 -04:00

17 lines
206 B
Bash
Executable file

#!/usr/bin/env bash
# Stop on error
set -e
# Remove old build
rm -rf dist/*
rm -rf build/*
# Build
python setup.py sdist bdist_wheel
# Check built files
twine check dist/*
# Upload
twine upload dist/*