Skip to content

Commit

Permalink
chore: correct windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Jun 7, 2024
1 parent 28a0df8 commit 7233755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 7233755

Please sign in to comment.