This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 0325324 ARROW-5937: [Release] Stop parallel binary upload
0325324 is described below
commit 0325324722f17f86a2161d125240620433a449de
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sat Jul 13 09:46:22 2019 +0900
ARROW-5937: [Release] Stop parallel binary upload
It's fragile.
Author: Sutou Kouhei <[email protected]>
Closes #4868 from kou/release-post-binary-stop-parallel and squashes the
following commits:
3b86cce8f <Sutou Kouhei> Stop parallel binary upload
---
dev/release/post-02-binary.sh | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/dev/release/post-02-binary.sh b/dev/release/post-02-binary.sh
index cdff1db..4e1e34f 100755
--- a/dev/release/post-02-binary.sh
+++ b/dev/release/post-02-binary.sh
@@ -100,9 +100,8 @@ download_files() {
--fail \
--location \
--output ${file} \
- https://dl.bintray.com/${BINTRAY_REPOSITORY}/${file} &
+ https://dl.bintray.com/${BINTRAY_REPOSITORY}/${file}
done
- wait
}
delete_file() {
@@ -152,9 +151,8 @@ for target in debian ubuntu centos python; do
mv ${version}-rc${rc} ${version}
fi
for file in $(find . -type f); do
- upload_file ${version} ${target} ${file} &
+ upload_file ${version} ${target} ${file}
done
- wait
popd
popd
rm -rf ${tmp_dir}