From 00de80ec040075f779b50d50e02cbec338d07ada Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Mon, 1 Aug 2022 11:54:34 +0900 Subject: [PATCH] Fix a typo --- ci/conan/all/conanfile.py | 2 +- dev/release/download_rc_binaries.py | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ci/conan/all/conanfile.py b/ci/conan/all/conanfile.py index 4b20ecdccac4d..110f9bd93537a 100644 --- a/ci/conan/all/conanfile.py +++ b/ci/conan/all/conanfile.py @@ -549,7 +549,7 @@ def package_info(self): if self._with_protobuf(): self.cpp_info.components["libarrow"].requires.append("protobuf::protobuf") if self._with_utf8proc(): - self.cpp_info.components["libarrow"].requires.append("uff8proc::uff8proc") + self.cpp_info.components["libarrow"].requires.append("utf8proc::utf8proc") if self._with_thrift(): self.cpp_info.components["libarrow"].requires.append("thrift::thrift") if self.options.with_backtrace: diff --git a/dev/release/download_rc_binaries.py b/dev/release/download_rc_binaries.py index ebd66a274d860..5401f11e8f231 100755 --- a/dev/release/download_rc_binaries.py +++ b/dev/release/download_rc_binaries.py @@ -105,8 +105,13 @@ def _download_file(self, dest, path): url = f'{self.URL_ROOT}/{path}' cmd = [ - 'curl', '--fail', '--location', '--retry', '5', - '--output', dest_path, url + 'curl', + '--fail', + '--location', + '--output', dest_path, + '--retry', '5', + '--retry-all-errors', + url, ] proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)