mirror of
https://github.com/Minionguyjpro/Inno-Setup-Action
synced 2026-02-18 17:41:18 +01:00
Update index.js
This commit is contained in:
@@ -25,18 +25,14 @@ async function run() {
|
||||
if (workspaceExists && workspaceNotEmpty) {
|
||||
// Escaping quotes in the options array
|
||||
const escapedOptions = options.map((str) =>
|
||||
str.replace(/(["'])/g, "\\$1"),
|
||||
str.replace(/(["'])/g, '$1'));
|
||||
);
|
||||
|
||||
// Debugging output to check the escaped options
|
||||
console.log("Escaped Options:", escapedOptions);
|
||||
|
||||
execFile(
|
||||
`${process.env["ProgramFiles(x86)"]}\\Inno Setup 6\\iscc.exe`,
|
||||
[...escapedOptions, `${workspacePath}\\${path}`],
|
||||
(execError, stdout, stderr) => {
|
||||
console.log("stdout:", stdout);
|
||||
console.log("stderr:", stderr);
|
||||
console.log(stdout, stderr);
|
||||
if (execError) {
|
||||
core.setFailed(`Execution failed with error: ${stderr}`);
|
||||
process.exit(execError.code || 1);
|
||||
|
||||
Reference in New Issue
Block a user