mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-13 23:20:39 +00:00
68bcd5bf57
* fix(update): gtk4 Signed-off-by: madomado <wboy111@outlook.com> * Update update.rhai Signed-off-by: madomado <wboy111@outlook.com> --------- Signed-off-by: madomado <wboy111@outlook.com>
8 lines
182 B
Plaintext
8 lines
182 B
Plaintext
let txt = get("https://gitlab.gnome.org/api/v4/projects/665/repository/tags");
|
|
for item in txt.json_arr() {
|
|
if item.name.starts_with("4.") {
|
|
rpm.version(item.name);
|
|
break;
|
|
}
|
|
}
|