mirror of
https://github.com/borgbackup/borg.git
synced 2026-02-20 00:10:35 -05:00
fix pypi repo name in upload script
it needs to be like this to support a ~/.pypirc like this,
containing a separate upload token for the borgbackup project:
[distutils]
index-servers =
borgbackup
...
[borgbackup]
repository = https://upload.pypi.org/legacy/
username = __token__
password = pypi-...(token)...
This commit is contained in:
parent
7aabe8204c
commit
84e87239bc
1 changed files with 3 additions and 3 deletions
|
|
@ -8,11 +8,11 @@ if [ "$R" = "" ]; then
|
|||
fi
|
||||
|
||||
if [ "$2" = "test" ]; then
|
||||
export TWINE_REPOSITORY=testpypi
|
||||
export TWINE_REPOSITORY=borgbackuptest
|
||||
else
|
||||
export TWINE_REPOSITORY=pypi
|
||||
export TWINE_REPOSITORY=borgbackup
|
||||
fi
|
||||
|
||||
D=dist/borgbackup-$R.tar.gz
|
||||
|
||||
twine upload "$D"
|
||||
twine upload $D
|
||||
|
|
|
|||
Loading…
Reference in a new issue