fix(runzip): use .getDistributables()

This commit is contained in:
AJ ONeal
2024-09-14 17:10:36 +00:00
parent deb8f37f8f
commit 4628cc0333
+1 -1
View File
@@ -7,7 +7,7 @@ let owner = 'therootcompany';
let repo = 'runzip';
Releases.latest = async function () {
let all = await GitHub.getAllPackages(null, owner, repo);
let all = await GitHub.getDistributables(null, owner, repo);
return all;
};