This is an automated email from the ASF dual-hosted git repository. mmerli pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
commit d83894da5b21081438b3230bb906463d4605151a Author: Matteo Merli <[email protected]> AuthorDate: Wed May 30 15:50:28 2018 -0700 Fixed script to build all versions Python wheel files (#1856) --- pulsar-client-cpp/docker/build-wheel-file-within-docker.sh | 1 + pulsar-client-cpp/docker/build-wheels.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pulsar-client-cpp/docker/build-wheel-file-within-docker.sh b/pulsar-client-cpp/docker/build-wheel-file-within-docker.sh index aa224fe..d550ca9 100755 --- a/pulsar-client-cpp/docker/build-wheel-file-within-docker.sh +++ b/pulsar-client-cpp/docker/build-wheel-file-within-docker.sh @@ -18,6 +18,7 @@ # under the License. # +set -e cd /pulsar/pulsar-client-cpp diff --git a/pulsar-client-cpp/docker/build-wheels.sh b/pulsar-client-cpp/docker/build-wheels.sh index a947a46..35cb789 100755 --- a/pulsar-client-cpp/docker/build-wheels.sh +++ b/pulsar-client-cpp/docker/build-wheels.sh @@ -44,5 +44,5 @@ for line in "${PYTHON_VERSIONS[@]}"; do IMAGE_NAME=$BUILD_IMAGE_NAME:manylinux-$PYTHON_SPEC echo "Using image: $IMAGE_NAME" - docker run -i -v $PWD:/pulsar $IMAGE_NAME /build.sh + docker run -i -v $PWD:/pulsar $IMAGE_NAME /build-wheel-file-within-docker.sh done -- To stop receiving notification emails like this one, please contact [email protected].
