We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d344e8 commit 7ac1fd9Copy full SHA for 7ac1fd9
release.sh
@@ -4,7 +4,7 @@ set -e
4
set -o pipefail
5
6
if [ -z "$PYTHON_BIN_PATH" ]; then
7
- PYTHON_BIN_PATH=$(which python3 || which python || true)
+ PYTHON_BIN_PATH=$(which python || true)
8
fi
9
10
export PYTHON_BIN_PATH
script/release.py
@@ -73,7 +73,7 @@ def tag_and_generate_changelog(new_version_num):
73
74
75
def upload_sdist(new_version_num):
76
- push_file = 'dist/Appium-Python-Client-{}.tar.gz'.format(new_version_num)
+ push_file = 'dist/appium_python_client-{}.tar.gz'.format(new_version_num)
77
try:
78
call_bash_script('twine upload "{}"'.format(push_file))
79
except Exception as e:
0 commit comments