mirror of
https://github.com/psy0rz/zfs_autobackup.git
synced 2025-04-11 22:40:01 +03:00
17 lines
266 B
Bash
Executable File
17 lines
266 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
rm -rf dist
|
|
python3 setup.py sdist bdist_wheel
|
|
# python2 setup.py sdist bdist_wheel
|
|
|
|
|
|
gnome-keyring-daemon
|
|
source tokentest
|
|
|
|
|
|
python3 -m twine check dist/*
|
|
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose
|