mirror of
https://github.com/borgbackup/borg.git
synced 2026-05-07 20:02:36 +00:00
471e302024
so it finds the right api token in .pypirc
19 lines
261 B
Bash
Executable File
19 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
R=$1
|
|
|
|
if [ "$R" = "" ]; then
|
|
echo "Usage: upload-pypi 1.2.3 [test]"
|
|
exit
|
|
fi
|
|
|
|
if [ "$2" = "test" ]; then
|
|
export TWINE_REPOSITORY=testborgbackup
|
|
else
|
|
export TWINE_REPOSITORY=borgbackup
|
|
fi
|
|
|
|
D=dist/borgbackup-$R.tar.gz
|
|
|
|
twine upload $D
|