We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d28076 commit 5fdd215Copy full SHA for 5fdd215
src/utility.ts
@@ -80,7 +80,7 @@ export function Run(
80
// Parse and add command (non-switches parameters) to `args`.
81
let regexpCommands = /"((?:\\.|[^"\\])*)"/g;
82
let commands = command.match(regexpCommands) || [];
83
- for (command of commands) {
+ for (let command of commands) {
84
const arg = command.replace(/(\/|\\)/g, sep);
85
args.push(normalize(arg));
86
}
0 commit comments