🚀 Big Update: wget removed, curl standardized, IPv6 ready! #3550
Pinned
MickLesk
announced in
Announcements
Replies: 1 comment 1 reply
-
[Unreleased]Fixed
Changed
Misc
Commits by: @MickLesk, @michelroegl-brunner |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🚀 Big Update: wget removed, curl standardized, IPv6 ready!
Hey everyone 👋
We’ve just merged a massive PR that replaces all
wget
andcurl -s
usage withcurl -fsSL
across the entire project.This change aligns with current best practices for:
✨ What changed?
wget
calls are nowcurl -fsSL
orcurl -fJL
-o
/-O
filename handling to avoid broken downloadsbash -c "$(wget ...)"
→curl -fsSL ...
source /dev/stdin <<< $(wget ...)
install/
,misc/
,ct/
,vm/
, etc.)📌 Why we did this
wget
has been inconsistent across some environmentscurl
with-fsSL
provides a clean, scriptable, and reliable behavior🧪 QA & Testing
We spent several hours reviewing and checking every conversion manually. Scripts have been batch-formatted, scanned, and loosely tested for runtime behavior – but:
So if something doesn't work or seems off, please tell us.
💬 Feedback welcome!
Please leave a comment in this discussion or on the PR if:
The community’s eyes are always better than one reviewer 😊
Thanks again for your patience and support!
—
🔗 PR: #3455
👤 Author: @MickLesk
Beta Was this translation helpful? Give feedback.
All reactions