From 735a3166e09a0e97d0885330fb98813fb7c3d3de Mon Sep 17 00:00:00 2001 From: Minionguyjpro Date: Tue, 7 Oct 2025 07:14:21 +0200 Subject: [PATCH] Reorder arguments in execFilePromise call --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 2e80249..3c5cc22 100644 --- a/src/index.js +++ b/src/index.js @@ -51,8 +51,8 @@ async function run() { try { const { stdout, stderr } = await execFilePromise(isccPath, [ - ...escapedOptions, scriptPath, + ...escapedOptions, ]); console.log(stdout); console.error(stderr);