mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-01 17:32:18 +00:00
12 lines
333 B
Plaintext
12 lines
333 B
Plaintext
let json = get(`https://api.github.com/repos/ad-oliviero/uwufetch/commits/development`).json();
|
|
let c = json.sha;
|
|
let d = json.commit.author.date;
|
|
d.truncate(10);
|
|
rpm.global("commit", c);
|
|
if rpm.changed() {
|
|
rpm.release();
|
|
rpm.global("fulldate", d);
|
|
let ver = gh_tag("ad-oliviero/uwufetch");
|
|
rpm.global("ver", ver);
|
|
}
|