From 72337557e63a9327b8481ac2dae5aacc10ad3e39 Mon Sep 17 00:00:00 2001 From: Martin Stamm Date: Fri, 7 Jun 2024 15:09:48 +0200 Subject: [PATCH] chore: correct windows path --- app/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/index.js b/app/lib/index.js index 93a32c381d..7d9faa3d6a 100644 --- a/app/lib/index.js +++ b/app/lib/index.js @@ -173,7 +173,7 @@ renderer.on('external:download-update', async function(options) { const updateZipFile = downloadedFile.getSavePath(); - const updateScript = isWindows ? '/update.bat' : '/update.ps1'; + const updateScript = isWindows ? 'update.ps1' : '/update.sh'; log.info('downloading update to', options);