Updated Inno Setup compiler path to the newer version

This commit is contained in:
WolverinDEV 2019-10-30 22:18:37 +01:00
parent a8df54528b
commit 24bea88a42
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ async function make_template() : Promise<string> {
async function make_installer(path: string) {
console.log("Compiling path %s", path);
const { stdout, stderr } = await exec("\"C:\\Program Files (x86)\\Inno Setup 5\\iscc.exe\" " + path, {maxBuffer: 1024 * 1024 * 1024}); //FIXME relative path?
const { stdout, stderr } = await exec("\"C:\\Program Files (x86)\\Inno Setup 6\\iscc.exe\" " + path, {maxBuffer: 1024 * 1024 * 1024}); //FIXME relative path?
}
if(process.argv.length < 3) {
console.error("Missing build channel!");