This is an automated email from the ASF dual-hosted git repository. sbp pushed a commit to branch sbp in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
commit 1354f7aba6d3a86042bcf78d6b5bc6f6958beb64 Author: Sean B. Palmer <[email protected]> AuthorDate: Mon Feb 23 18:27:48 2026 +0000 Fix a problem with the download script --- atr/get/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atr/get/download.py b/atr/get/download.py index 08b334f0..7a25aea9 100644 --- a/atr/get/download.py +++ b/atr/get/download.py @@ -85,7 +85,7 @@ async def sh_selected(session: web.Committer | None, project_name: str, version_ content = await f.read() download_urls_selected = util.as_url(urls_selected, project_name=project_name, version_name=version_name) download_path = util.as_url(path, project_name=project_name, version_name=version_name, file_path="") - curl_options = "--insecure" if util.is_dev_environment() else "--proto '=https' --tlsv1.2" + curl_options = "--insecure" if util.is_dev_environment() else "--proto =https --tlsv1.2" content = content.replace("[CURL_EXTRA]", curl_options) content = content.replace("[URL_OF_URLS]", f"https://{app_host}{download_urls_selected}") content = content.replace("[URLS_PREFIX]", f"https://{app_host}{download_path}") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
