mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-14 15:40:44 +00:00
14 lines
353 B
Plaintext
14 lines
353 B
Plaintext
rpm.global("commit", gh_commit("Milkshiift/GoofCord"));
|
|
if rpm.changed() {
|
|
let v = gh_tag("Milkshiift/GoofCord");
|
|
v.crop(1);
|
|
if `[\d.]+-beta\.\d+`.find_all(v).len == 1 {
|
|
let v = sub(`-beta\.\d+`, `~`, v);
|
|
rpm.global("ver", v);
|
|
} else {
|
|
rpm.global("ver", v + `^`);
|
|
}
|
|
rpm.global("commit_date", date());
|
|
rpm.release();
|
|
}
|