修改上游链接

This commit is contained in:
2026-02-19 17:56:30 +08:00
parent c27c1f1697
commit d16dec09a6
4 changed files with 12 additions and 13 deletions

View File

@@ -29,9 +29,9 @@ contextBridge.exposeInMainWorld("apm_store", {
arch: (() => {
const arch = process.arch;
if (arch === "x64") {
return "amd64" + "-apm";
return "amd64" + "-store";
} else {
return arch + "-apm";
return arch + "-store";
}
})(),
});