This is an automated email from the ASF dual-hosted git repository. wesm pushed a commit to branch maint-0.14.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 3e2893f72abfe7620bf77ece86c86bcad6152488 Author: Sutou Kouhei <[email protected]> AuthorDate: Sun Jun 30 16:23:30 2019 +0900 ARROW-5795: [Release] Add missing waits on uploading binaries Author: Sutou Kouhei <[email protected]> Closes #4755 from kou/release-add-missing-wait and squashes the following commits: 081c1aa10 <Sutou Kouhei> Add missing waits on uploading binaries --- dev/release/03-binary.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev/release/03-binary.sh b/dev/release/03-binary.sh index f3f418c..92cfaaf 100755 --- a/dev/release/03-binary.sh +++ b/dev/release/03-binary.sh @@ -317,6 +317,7 @@ upload_deb() { for base_path in *; do upload_deb_file ${version} ${rc} ${distribution} ${code_name} ${base_path} & done + wait } upload_apt() { @@ -447,6 +448,7 @@ upload_rpm() { ${distribution_version} \ ${rpm_path} & done + wait } upload_yum() { @@ -516,6 +518,7 @@ upload_python() { ${base_path} \ ${version}-rc${rc}/${base_path} & done + wait } docker build -t ${docker_image_name} ${SOURCE_DIR}/binary
