mirror of
https://github.com/hykilpikonna/hyfetch.git
synced 2026-03-25 11:14:20 -05:00
19 lines
218 B
Bash
Executable File
19 lines
218 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Stop on error
|
|
set -e
|
|
|
|
# Remove old build
|
|
rm -rf ../dist/*
|
|
rm -rf ../build/*
|
|
|
|
# Build
|
|
cd ..
|
|
python setup.py sdist bdist_wheel
|
|
|
|
# Check built files
|
|
twine check dist/*
|
|
|
|
# Upload
|
|
twine upload dist/*
|