���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/st2/vendor/google/protobuf/python/release/wheel/ |
#!/bin/bash # Print usage and fail. function usage() { echo "Usage: protobuf_optimized_pip.sh PROTOBUF_VERSION PYPI_USERNAME PYPI_PASSWORD" >&2 exit 1 # Causes caller to exit because we use -e. } # Validate arguments. if [ $0 != ./build_wheel_manylinux.sh ]; then echo "Please run this script from the directory in which it is located." >&2 exit 1 fi if [ $# -lt 3 ]; then usage exit 1 fi PROTOBUF_VERSION=$1 PYPI_USERNAME=$2 PYPI_PASSWORD=$3 docker rmi protobuf-python-wheel docker build . -t protobuf-python-wheel docker run --rm protobuf-python-wheel ./protobuf_optimized_pip.sh $PROTOBUF_VERSION $PYPI_USERNAME $PYPI_PASSWORD docker rmi protobuf-python-wheel