[FirstRun > win32] Fix another updated var name error

This commit is contained in:
CanadaHonk 2021-12-13 10:11:25 +00:00 committed by GitHub
parent 51f3634a3c
commit 2a77d914c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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) => {
}
}
});
};
};