mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-03 10:22:19 +00:00
3b0169c5fe
* chore(zig-bootstrap): Add updbranch label so it stops breaking updates on <= F41
* Rebase onto f41 (I hope)
* Backport Zig stuff
---------
(cherry picked from commit d45c262dce)
Signed-off-by: Gilver <rockgrub@disroot.org>
Co-authored-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();
|
|
}
|