Sfoglia il codice sorgente

fix: service mode install script download not found (#822)

Damian Johnson 1 anno fa
parent
commit
e06327936e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      scripts/check.mjs

+ 1 - 1
scripts/check.mjs

@@ -388,7 +388,7 @@ const resolveInstall = () => {
   let ext = platform === "win32" ? ".exe" : "";
   resolveResource({
     file: "install-service" + ext,
-    downloadURL: `${SERVICE_URL}/install-service.exe${ext}`,
+    downloadURL: `${SERVICE_URL}/install-service${ext}`,
   });
 };