Skip to content

Commit 5fdd215

Browse files
committed
fix: issue TheTechsTech#29
Fixes: - issue TheTechsTech#29 and potential others dealing with output parameter - test suite now runs all tests
1 parent 3d28076 commit 5fdd215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function Run(
8080
// Parse and add command (non-switches parameters) to `args`.
8181
let regexpCommands = /"((?:\\.|[^"\\])*)"/g;
8282
let commands = command.match(regexpCommands) || [];
83-
for (command of commands) {
83+
for (let command of commands) {
8484
const arg = command.replace(/(\/|\\)/g, sep);
8585
args.push(normalize(arg));
8686
}

0 commit comments

Comments
 (0)