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
The following commit(s) were added to refs/heads/sbp by this push:
new 0acdc900 Fix a problem with the download script
0acdc900 is described below
commit 0acdc900ad3ef0d5ce6dc127d502973b92866af4
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]