From b60afa7e19a742c827c94895f5621bb3ddc20271 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 27 Nov 2022 01:02:39 +0100 Subject: [PATCH] twine: use repo name instead of url --- scripts/upload-pypi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/upload-pypi b/scripts/upload-pypi index 618e36f82..ba84e78d4 100755 --- a/scripts/upload-pypi +++ b/scripts/upload-pypi @@ -8,9 +8,9 @@ if [ "$R" = "" ]; then fi if [ "$2" = "test" ]; then - export TWINE_REPOSITORY_URL=https://test.pypi.org/legacy/ + export TWINE_REPOSITORY=testpypi else - export TWINE_REPOSITORY_URL= + export TWINE_REPOSITORY=pypi fi D=dist/borgbackup-$R.tar.gz