Skip to content
Snippets Groups Projects
Unverified Commit 7633f9f8 authored by GyDi's avatar GyDi Committed by GitHub
Browse files

chore: fix updater script

parent 9b562339
No related branches found
No related tags found
No related merge requests found
......@@ -53,18 +53,12 @@ async function resolveUpdater() {
const { name, browser_download_url } = asset;
// win64 url
if (
name.endsWith(".msi.zip") &&
(!updateData.platforms.win64.url || name.includes("en-US"))
) {
if (name.endsWith(".msi.zip") && name.includes("en-US")) {
updateData.platforms.win64.url = browser_download_url;
updateData.platforms["windows-x86_64"].url = browser_download_url;
}
// win64 signature
if (
name.endsWith(".msi.zip.sig") &&
(!updateData.platforms.win64.signature || name.includes("en-US"))
) {
if (name.endsWith(".msi.zip.sig") && name.includes("en-US")) {
const sig = await getSignature(browser_download_url);
updateData.platforms.win64.signature = sig;
updateData.platforms["windows-x86_64"].signature = sig;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment