mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-07 04:12:18 +00:00
a16b7bce95
* chore: sync with Terra 39 * fix: update mock-configs path * fix: use f38 specs for desktops * chore: move more lomiri/unity specific packages (#880) * Fix(ubuntu-sdk): update description & version (#878) Signed-off-by: cat-master21 <96554164+cat-master21@users.noreply.github.com> * fix: disable docs package (#887) * sync more changes from f39 * add keyd fixes --------- Signed-off-by: cat-master21 <96554164+cat-master21@users.noreply.github.com> Signed-off-by: lleyton <lleyton@fyralabs.com> Co-authored-by: cat-master21 <96554164+cat-master21@users.noreply.github.com>
11 lines
329 B
Plaintext
11 lines
329 B
Plaintext
let release = get("https://api.github.com/repos/vscodium/vscodium/releases").json_arr()[0];
|
|
let i = 0;
|
|
for asset in release.assets {
|
|
if asset.name == `VSCodium-linux-x64-${release.tag_name}.tar.gz` || asset.name == `VSCodium-linux-arm64-${release.tag_name}.tar.gz` {
|
|
i += 1;
|
|
}
|
|
}
|
|
if i == 2 {
|
|
rpm.version(release.tag_name);
|
|
}
|