mirror of
https://github.com/Minionguyjpro/Inno-Setup-Action
synced 2026-02-18 17:41:18 +01:00
[AUTO]Update CJS script
Files changed: M dist/index.js M src/index.js
This commit is contained in:
7
dist/index.js
vendored
7
dist/index.js
vendored
@@ -27331,15 +27331,20 @@ async function run() {
|
|||||||
const workspaceNotEmpty = (await fs.readdir(workspacePath)).length > 0;
|
const workspaceNotEmpty = (await fs.readdir(workspacePath)).length > 0;
|
||||||
|
|
||||||
if (workspaceExists && workspaceNotEmpty) {
|
if (workspaceExists && workspaceNotEmpty) {
|
||||||
|
// Escaping quotes in the options array
|
||||||
const escapedOptions = options.map((str) =>
|
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(
|
execFile(
|
||||||
`${process.env["ProgramFiles(x86)"]}\\Inno Setup 6\\iscc.exe`,
|
`${process.env["ProgramFiles(x86)"]}\\Inno Setup 6\\iscc.exe`,
|
||||||
[...escapedOptions, `${workspacePath}\\${path}`],
|
[...escapedOptions, `${workspacePath}\\${path}`],
|
||||||
(execError, stdout, stderr) => {
|
(execError, stdout, stderr) => {
|
||||||
console.log(stdout);
|
console.log("stdout:", stdout);
|
||||||
|
console.log("stderr:", stderr);
|
||||||
if (execError) {
|
if (execError) {
|
||||||
core.setFailed(`Execution failed with error: ${stderr}`);
|
core.setFailed(`Execution failed with error: ${stderr}`);
|
||||||
process.exit(execError.code || 1);
|
process.exit(execError.code || 1);
|
||||||
|
|||||||
10
src/index.js
10
src/index.js
@@ -24,17 +24,19 @@ async function run() {
|
|||||||
|
|
||||||
if (workspaceExists && workspaceNotEmpty) {
|
if (workspaceExists && workspaceNotEmpty) {
|
||||||
// Escaping quotes in the options array
|
// Escaping quotes in the options array
|
||||||
const escapedOptions = options.map(str => str.replace(/(["'])/g, '\\$1'));
|
const escapedOptions = options.map((str) =>
|
||||||
|
str.replace(/(["'])/g, "\\$1"),
|
||||||
|
);
|
||||||
|
|
||||||
// Debugging output to check the escaped options
|
// Debugging output to check the escaped options
|
||||||
console.log('Escaped Options:', escapedOptions);
|
console.log("Escaped Options:", escapedOptions);
|
||||||
|
|
||||||
execFile(
|
execFile(
|
||||||
`${process.env["ProgramFiles(x86)"]}\\Inno Setup 6\\iscc.exe`,
|
`${process.env["ProgramFiles(x86)"]}\\Inno Setup 6\\iscc.exe`,
|
||||||
[...escapedOptions, `${workspacePath}\\${path}`],
|
[...escapedOptions, `${workspacePath}\\${path}`],
|
||||||
(execError, stdout, stderr) => {
|
(execError, stdout, stderr) => {
|
||||||
console.log('stdout:', stdout);
|
console.log("stdout:", stdout);
|
||||||
console.log('stderr:', stderr);
|
console.log("stderr:", stderr);
|
||||||
if (execError) {
|
if (execError) {
|
||||||
core.setFailed(`Execution failed with error: ${stderr}`);
|
core.setFailed(`Execution failed with error: ${stderr}`);
|
||||||
process.exit(execError.code || 1);
|
process.exit(execError.code || 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user