-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace wget with curl -fsSL, normalize downloads, and prep for IPv6 #3455
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Looks good to me, i did not find anything obvious. |
michelroegl-brunner
approved these changes
Apr 1, 2025
tremor021
approved these changes
Apr 1, 2025
CrazyWolf13
reviewed
Apr 1, 2025
CrazyWolf13
reviewed
Apr 1, 2025
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
breaking change
A change that is not backward compatible
update script
A change that updates a script
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
✍️ Description
This update introduces a full migration from
wget
andcurl -s
tocurl -fsSL
across the entire codebase, following best practices for reliability, security, and error visibility.✅ Key Changes
wget
calls withcurl -fsSL
orcurl -fJL
(where--content-disposition
was needed)curl -s
,curl -sL
and partial variants tocurl -fsSL
curl -o <file>
(explicit target)curl -O
(autodetected filename)wget -qO- ... -O file
bash -c "$(wget ...)"
→bash -c "$(curl -fsSL ...)"
source /dev/stdin <<< $(wget ...)
→$(curl -fsSL ...)
📁 Scope
Affected directories:
/install
/ct
/misc
/vm
)api.func
,build.func
, and related helpersFile types:
*.sh
,*.bash
,*.txt
, and various install scripts🌐 IPv6 Preparation
🧹 Other Improvements
wget
variants🔗 Related PR / Issue
Link: #
✅ Prerequisites (X in brackets)
🛠️ Type of Change (X in brackets)
README
,AppName.md
,CONTRIBUTING.md
, or other docs.