1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00

Reorder arguments in execFilePromise call

This commit is contained in:
Minionguyjpro
2025-10-07 07:14:21 +02:00
committed by GitHub
parent 85966aee9d
commit 735a3166e0

View File

@@ -51,8 +51,8 @@ async function run() {
try { try {
const { stdout, stderr } = await execFilePromise(isccPath, [ const { stdout, stderr } = await execFilePromise(isccPath, [
...escapedOptions,
scriptPath, scriptPath,
...escapedOptions,
]); ]);
console.log(stdout); console.log(stdout);
console.error(stderr); console.error(stderr);