hyfetch/tools/deploy.sh

15 lines
237 B
Bash
Raw Permalink Normal View History

2022-04-10 04:45:53 -06:00
#!/usr/bin/env bash
# Stop on error
set -e
2024-05-16 07:50:22 -06:00
# Get script directory
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
2022-04-10 04:45:53 -06:00
2024-05-16 07:50:22 -06:00
# Run build_pkg
"$DIR/build_pkg.sh"
2022-04-10 04:45:53 -06:00
# Check built files
twine check dist/*
twine upload dist/*