mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
19 lines
281 B
Text
19 lines
281 B
Text
|
#!/bin/bash
|
||
|
|
||
|
R=$1
|
||
|
|
||
|
if [ "$R" = "" ]; then
|
||
|
echo "Usage: upload-pypi 1.2.3 [test]"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
if [ "$2" = "test" ]; then
|
||
|
export TWINE_REPOSITORY_URL=https://test.pypi.org/legacy/
|
||
|
else
|
||
|
export TWINE_REPOSITORY_URL=
|
||
|
fi
|
||
|
|
||
|
D=dist/borgbackup-$R.tar.gz
|
||
|
|
||
|
twine upload $D.asc $D
|