mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-08 12:52:17 +00:00
8 lines
366 B
Plaintext
8 lines
366 B
Plaintext
if !labels.branch.starts_with("f") {
|
|
print(`mesa-freeworld: unsupported branch: ${labels.branch}`);
|
|
terminate();
|
|
}
|
|
let release = labels.branch.to_upper();
|
|
let ver = get(`https://bodhi.fedoraproject.org/updates/?search=mesa&status=stable&releases=${release}&rows_per_page=1&page=1`).json().updates[0].title;
|
|
rpm.global("ver", find(`^mesa-([\d.]+)`, ver, 1));
|