This is an automated email from the ASF dual-hosted git repository.
amoghdesai pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 3afea1b7615 Update README_RELEASE_PROVIDERS.md (#55873)
3afea1b7615 is described below
commit 3afea1b7615269d15f96b3562c07fb32024fc639
Author: Amogh Desai <[email protected]>
AuthorDate: Fri Sep 19 17:40:52 2025 +0530
Update README_RELEASE_PROVIDERS.md (#55873)
---
dev/README_RELEASE_PROVIDERS.md | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/dev/README_RELEASE_PROVIDERS.md b/dev/README_RELEASE_PROVIDERS.md
index d946d676746..bc325926053 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -914,7 +914,13 @@ This can be done with the Apache RAT tool.
```shell script
# Get rat if you do not have it
-wget -qO-
https://dlcdn.apache.org//creadur/apache-rat-0.16.1/apache-rat-0.16.1-bin.tar.gz
| gunzip | tar -C /tmp -xvf -
+if command -v wget >/dev/null 2>&1; then
+ echo "Using wget to download Apache RAT..."
+ wget -qO-
https://dlcdn.apache.org//creadur/apache-rat-0.16.1/apache-rat-0.16.1-bin.tar.gz
| gunzip | tar -C /tmp -xvf -
+else
+ echo "ERROR: wget not found. Install with: brew install wget (macOS) or
apt-get install wget (Linux)"
+ exit 1
+fi
# Cleanup old folders (if needed)
find . -type d -maxdepth 1 | grep -v "^.$"> /tmp/files.txt
cat /tmp/files.txt | xargs rm -rf