소스 검색

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

Damian Johnson 1 년 전
부모
커밋
e06327936e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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}`,
   });
 };