Merge pull request #4090 from pherl/nopassword

Fix uploading binary wheel.
pull/4136/head
Jisi Liu 7 years ago committed by GitHub
commit 5b1caea024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      python/release/wheel/protobuf_optimized_pip.sh

@ -6,7 +6,7 @@ set -ex
# Print usage and fail.
function usage() {
echo "Usage: protobuf_optimized_pip.sh PROTOBUF_VERSION PYPI_USERNAME PYPI_PASSWORD" >&2
echo "Usage: protobuf_optimized_pip.sh PROTOBUF_VERSION" >&2
exit 1 # Causes caller to exit because we use -e.
}
@ -25,7 +25,7 @@ if [ $0 != ./protobuf_optimized_pip.sh ]; then
exit 1
fi
if [ $# -lt 3 ]; then
if [ $# -lt 1 ]; then
usage
exit 1
fi
@ -63,7 +63,4 @@ do
build_wheel $PYTHON_VERSION
done
/opt/python/cp27-cp27mu/bin/twine upload wheelhouse/* <<!
$PYPI_USERNAME
$PYPI_PASSWORD
!
/opt/python/cp27-cp27mu/bin/twine upload wheelhouse/*

Loading…
Cancel
Save