This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-release.git
The following commit(s) were added to refs/heads/main by this push:
new 95b7aaf Remove quotation marks from the curl download command
95b7aaf is described below
commit 95b7aaf7adca99a5070f6dd606c3eee2dd052abd
Author: Sean B. Palmer <[email protected]>
AuthorDate: Sat May 3 11:39:44 2025 +0100
Remove quotation marks from the curl download command
---
atr/templates/download-all.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/atr/templates/download-all.html b/atr/templates/download-all.html
index 3c8f2ec..9c1f405 100644
--- a/atr/templates/download-all.html
+++ b/atr/templates/download-all.html
@@ -94,7 +94,7 @@
<p>You can download all of the files in this release using curl with the
following command:</p>
<!-- TODO: Add a button to copy the command to the clipboard -->
<pre class="bg-light p-3 mb-3">
-curl -fsS "https://{{ server_domain }}{{ as_url(routes.download.sh_selected,
project_name=release.project.name, version_name=release.version) }}" | sh
+curl -fsS https://{{ server_domain }}{{ as_url(routes.download.sh_selected,
project_name=release.project.name, version_name=release.version) }} | sh
</pre>
<p>
This downloads the files into the <em>current directory</em>. Ensure that
you create a new empty directory, and change to it, before running the command.
The script requires curl and POSIX compliant versions of printf and sh. It
works by downloading a POSIX complaint shell script straight into your shell.
You can of course download the script and audit it before running it.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]