mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-26 05:20:39 +00:00
27038fcbaf
* fix(rpcs3): yaml-cpp is also vendored
* chore: Bump release
* fix(update.rhai): rpm.release
---------
(cherry picked from commit f684e02542)
Signed-off-by: Gilver <rockgrub@disroot.org>
Co-authored-by: Gilver <rockgrub@disroot.org>
10 lines
320 B
Plaintext
10 lines
320 B
Plaintext
let html = get("https://rpcs3.net/download");
|
|
let v = find("Build ([\\d.]+-[\\d.]+)\\s+</span>", html, 1);
|
|
rpm.global("ver", v);
|
|
|
|
if rpm.changed () {
|
|
let c = find("Commit <a href=\"https://github.com/RPCS3/rpcs3/commit/([\\w\\d]+)\" target=\"_blank\"", html, 1);
|
|
rpm.global("commit", c);
|
|
rpm.release();
|
|
}
|