Skip to content

Commit

Permalink
Merge pull request #2 from blue-build/use-musl-build
Browse files Browse the repository at this point in the history
fix: Make use of musl build of Nushell
  • Loading branch information
xynydev authored Jan 4, 2025
2 parents f005358 + 4752af2 commit 579f8f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.nu
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ print $"(ansi green_bold)Gathering images"
let images = http get https://api.github.com/repos/nushell/nushell/releases | enumerate | each { |arrayEl|
let release = $arrayEl.item

let url = ($release.assets | where name ends-with "x86_64-unknown-linux-gnu.tar.gz").browser_download_url.0
let url = ($release.assets | where name ends-with "x86_64-unknown-linux-musl.tar.gz").browser_download_url.0
let version = $release.name

let tags = (
Expand Down

0 comments on commit 579f8f1

Please sign in to comment.