This is an automated email from the ASF dual-hosted git repository.

ndimiduk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new bca02670a5f HBASE-29092 hbase-vote.sh is stymied by the new robots.txt 
on dist.apache.org (#6626)
bca02670a5f is described below

commit bca02670a5fbd8ab4dbfa02a18ee97fbcd18e72a
Author: Nick Dimiduk <[email protected]>
AuthorDate: Thu Jan 23 09:13:37 2025 +0100

    HBASE-29092 hbase-vote.sh is stymied by the new robots.txt on 
dist.apache.org (#6626)
    
    Signed-off-by: Duo Zhang <[email protected]>
---
 dev-support/hbase-vote.sh | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dev-support/hbase-vote.sh b/dev-support/hbase-vote.sh
index 14286dca8ad..abaa437fd75 100755
--- a/dev-support/hbase-vote.sh
+++ b/dev-support/hbase-vote.sh
@@ -121,7 +121,14 @@ function download_and_import_keys() {
 
 function download_release_candidate () {
     # get all files from release candidate repo
-    wget -r -np -N -nH --cut-dirs 4 "${SOURCE_URL}"
+    wget \
+      --execute robots=off \
+      --recursive \
+      --no-parent \
+      --timestamping \
+      --no-host-directories \
+      --cut-dirs 4 \
+      "${SOURCE_URL}"
 }
 
 function verify_signatures() {

Reply via email to