mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-27 03:43:01 +02:00
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -fr dist
|
|
python3 setup.py bdist_wheel
|
|
python3 setup.py sdist
|
|
twine upload -r pypi dist/borgmatic-*.tar.gz
|
|
twine upload -r pypi dist/borgmatic-*-py3-none-any.whl
|