Skip to content

Commit

Permalink
chore: update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa committed Sep 24, 2024
1 parent 1d344e8 commit 7ac1fd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
set -o pipefail

if [ -z "$PYTHON_BIN_PATH" ]; then
PYTHON_BIN_PATH=$(which python3 || which python || true)
PYTHON_BIN_PATH=$(which python || true)
fi

export PYTHON_BIN_PATH
Expand Down
2 changes: 1 addition & 1 deletion script/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def tag_and_generate_changelog(new_version_num):


def upload_sdist(new_version_num):
push_file = 'dist/Appium-Python-Client-{}.tar.gz'.format(new_version_num)
push_file = 'dist/appium_python_client-{}.tar.gz'.format(new_version_num)
try:
call_bash_script('twine upload "{}"'.format(push_file))
except Exception as e:
Expand Down

0 comments on commit 7ac1fd9

Please sign in to comment.