mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-06 20:02:18 +00:00
5a5aad5cf5
(cherry picked from commit ce03ce1f38)
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();
|
|
}
|