Skip to content

Commit 7ac1fd9

Browse files
committed
chore: update release script
1 parent 1d344e8 commit 7ac1fd9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
set -o pipefail
55

66
if [ -z "$PYTHON_BIN_PATH" ]; then
7-
PYTHON_BIN_PATH=$(which python3 || which python || true)
7+
PYTHON_BIN_PATH=$(which python || true)
88
fi
99

1010
export PYTHON_BIN_PATH

script/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def tag_and_generate_changelog(new_version_num):
7373

7474

7575
def upload_sdist(new_version_num):
76-
push_file = 'dist/Appium-Python-Client-{}.tar.gz'.format(new_version_num)
76+
push_file = 'dist/appium_python_client-{}.tar.gz'.format(new_version_num)
7777
try:
7878
call_bash_script('twine upload "{}"'.format(push_file))
7979
except Exception as e:

0 commit comments

Comments
 (0)