Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 1, 2022
1 parent ffe4429 commit 00de80e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/conan/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 7 additions & 2 deletions dev/release/download_rc_binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 00de80e

Please sign in to comment.