Skip to content

Commit

Permalink
fix: don't pass URL as array
Browse files Browse the repository at this point in the history
  • Loading branch information
xynydev committed Sep 22, 2024
1 parent d3652e5 commit c096512
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 @@ -6,7 +6,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
let url = ($release.assets | where name ends-with "x86_64-unknown-linux-gnu.tar.gz").browser_download_url.0
let version = $release.name

let tags = (
Expand Down

0 comments on commit c096512

Please sign in to comment.