4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
13 lines
355 B
Bash
Executable file
13 lines
355 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
|
|
|
set -euo pipefail
|
|
|
|
version="$(
|
|
curl -s https://api.github.com/repos/ztefn/haguichi/releases |
|
|
jq '.[] | select(.target_commitish!="elementary") | .tag_name' --raw-output |
|
|
sort --version-sort --reverse |
|
|
head -n1
|
|
)"
|
|
|
|
update-source-version haguichi "$version"
|