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

This commit is contained in:
Damian Johnson 2024-04-03 23:18:10 +08:00 committed by GitHub
parent 5f044e1aed
commit e06327936e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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}`,
});
};