From 2a77d914c179a8d26b4b57e4e0340ea0db81085b Mon Sep 17 00:00:00 2001 From: CanadaHonk <19228318+CanadaHonk@users.noreply.github.com> Date: Mon, 13 Dec 2021 10:11:25 +0000 Subject: [PATCH] [FirstRun > win32] Fix another updated var name error --- src/firstRun/win32.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/firstRun/win32.js b/src/firstRun/win32.js index 858a29b..6af2975 100644 --- a/src/firstRun/win32.js +++ b/src/firstRun/win32.js @@ -7,7 +7,7 @@ const Constants = require('../Constants'); const appPath = path.resolve(process.execPath, '..'); const rootPath = path.resolve(appPath, '..'); const exeFilename = path.basename(process.execPath); -const updateExe = path.join(rootFolder, 'Update.exe'); +const updateExe = path.join(rootPath, 'Update.exe'); const iconFile = 'app.ico'; const copyIconToRoot = () => { @@ -70,4 +70,4 @@ exports.performFirstRunTasks = (updater) => { } } }); -}; \ No newline at end of file +};