From 5fdd215b0adfc3b91252a92e8a07278eb051c54b Mon Sep 17 00:00:00 2001 From: sergxerj <72986199+sergxerj@users.noreply.github.com> Date: Tue, 4 Jul 2023 21:00:58 -0500 Subject: [PATCH 1/2] fix: issue #29 Fixes: - issue #29 and potential others dealing with output parameter - test suite now runs all tests --- src/utility.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utility.ts b/src/utility.ts index f991804..ac69200 100644 --- a/src/utility.ts +++ b/src/utility.ts @@ -80,7 +80,7 @@ export function Run( // Parse and add command (non-switches parameters) to `args`. let regexpCommands = /"((?:\\.|[^"\\])*)"/g; let commands = command.match(regexpCommands) || []; - for (command of commands) { + for (let command of commands) { const arg = command.replace(/(\/|\\)/g, sep); args.push(normalize(arg)); } From 5a0b933768c551a1458ad3c1583d631b6c4daab5 Mon Sep 17 00:00:00 2001 From: sergxerj <72986199+sergxerj@users.noreply.github.com> Date: Tue, 4 Jul 2023 21:02:18 -0500 Subject: [PATCH 2/2] chore: add self to contribs --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 884ffb0..0137ebc 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,8 @@ "Quentin Rossetti ", "František Gič ", "Oskar Larsson Högfeldt ", - "Amin Yahyaabadi " + "Amin Yahyaabadi ", + "sergxerj" ], "license": "MIT", "bugs": {