Install v0.43.1 of zellij

This commit is contained in:
2026-03-30 12:42:36 -04:00
parent 3bd50b692b
commit e0bb892975
2 changed files with 9 additions and 1 deletions
+7 -1
View File
@@ -1,7 +1,13 @@
#!/usr/bin/env nu
let version = if 'ZELLIJ_VERSION' in $env {
$'tags/($env.ZELLIJ_VERSION)'
} else {
'latest'
}
let download_url = (
(http get https://api.github.com/repos/zellij-org/zellij/releases | enumerate | first).item.assets
(http get $'https://api.github.com/repos/zellij-org/zellij/releases/($version)').assets
| find -c [name] "x86_64-unknown-linux-musl.tar.gz"
).browser_download_url.0