mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-04 02:42:19 +00:00
d45c262dce
* chore(zig-bootstrap): Add updbranch label so it stops breaking updates on <= F41 Signed-off-by: Gilver <rockgrub@disroot.org> * Rebase onto f41 (I hope) * Backport Zig stuff --------- Signed-off-by: Gilver <rockgrub@disroot.org>
8 lines
171 B
Plaintext
8 lines
171 B
Plaintext
let url = `https://ziglang.org/download/index.json`;
|
|
let json = get(url).json();
|
|
let v = json.master.version;
|
|
rpm.global("ver", v);
|
|
if rpm.changed() {
|
|
rpm.release();
|
|
}
|