Skip to content

Commit f553ad6

Browse files
committed
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
1 parent 40d0d6a commit f553ad6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

dev/release/post-02-binary.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,8 @@ download_files() {
100100
--fail \
101101
--location \
102102
--output ${file} \
103-
https://dl.bintray.com/${BINTRAY_REPOSITORY}/${file} &
103+
https://dl.bintray.com/${BINTRAY_REPOSITORY}/${file}
104104
done
105-
wait
106105
}
107106

108107
delete_file() {
@@ -152,9 +151,8 @@ for target in debian ubuntu centos python; do
152151
mv ${version}-rc${rc} ${version}
153152
fi
154153
for file in $(find . -type f); do
155-
upload_file ${version} ${target} ${file} &
154+
upload_file ${version} ${target} ${file}
156155
done
157-
wait
158156
popd
159157
popd
160158
rm -rf ${tmp_dir}

0 commit comments

Comments
 (0)