diff options
| author | Fredrik Foss-Indrehus <fredrikfoss@fr.urbanpets.no> | 2025-05-24 21:06:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-24 21:06:53 +0200 |
| commit | 8024d64e1330b86044fed4c8494ef3dcd483a67c (patch) | |
| tree | de575420b901ac5dd44221c90ac51b4e75bea370 /lua/mason-core/fetch.lua | |
| parent | docs: rework Installation & Setup sections, and other minor adjustments (#1951) (diff) | |
| download | mason-8024d64e1330b86044fed4c8494ef3dcd483a67c.tar mason-8024d64e1330b86044fed4c8494ef3dcd483a67c.tar.gz mason-8024d64e1330b86044fed4c8494ef3dcd483a67c.tar.bz2 mason-8024d64e1330b86044fed4c8494ef3dcd483a67c.tar.lz mason-8024d64e1330b86044fed4c8494ef3dcd483a67c.tar.xz mason-8024d64e1330b86044fed4c8494ef3dcd483a67c.tar.zst mason-8024d64e1330b86044fed4c8494ef3dcd483a67c.zip | |
fix(fetch): add busybox wget support (#1829)
Co-authored-by: William Boman <william@redwill.se>
Diffstat (limited to 'lua/mason-core/fetch.lua')
| -rw-r--r-- | lua/mason-core/fetch.lua | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/lua/mason-core/fetch.lua b/lua/mason-core/fetch.lua index c1f01dc2..be79db1f 100644 --- a/lua/mason-core/fetch.lua +++ b/lua/mason-core/fetch.lua @@ -75,19 +75,36 @@ local function fetch(url, opts) end local function wget() - local headers = - _.sort_by(_.identity, _.map(_.compose(_.format "--header=%s", _.join ": "), _.to_pairs(opts.headers))) + local headers = _.sort_by( |
