Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
18 lines
580 B
Bash
Executable File
18 lines
580 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p coreutils gnused gitMinimal nix-update
|
|
|
|
set -euo pipefail
|
|
|
|
dirname="$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
url=$(nix-instantiate --eval --raw -A radicle-tui.src.url)
|
|
old_node=$(nix-instantiate --eval --raw -A radicle-tui.src.node)
|
|
|
|
ref=$(git ls-remote "$url" 'refs/namespaces/*/refs/tags/*' | cut -f2 | tail -1)
|
|
[[ "$ref" =~ ^refs/namespaces/([^/]+)/refs/tags/([^/]+)$ ]]
|
|
new_node="${BASH_REMATCH[1]}"
|
|
version="${BASH_REMATCH[2]}"
|
|
|
|
sed -i "s/${old_node}/${new_node}/g" "${dirname}/package.nix"
|
|
nix-update --version="$version" radicle-tui
|