Skip to content

Commit

Permalink
Merge pull request #32 from sergxerj/fix-issue-29
Browse files Browse the repository at this point in the history
Fix issue 29
  • Loading branch information
TheTechsTech authored Jul 5, 2023
2 parents 3d28076 + 5a0b933 commit 62378a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"Quentin Rossetti <[email protected]>",
"František Gič <[email protected]>",
"Oskar Larsson Högfeldt <[email protected]>",
"Amin Yahyaabadi <[email protected]>"
"Amin Yahyaabadi <[email protected]>",
"sergxerj"
],
"license": "MIT",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/utility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit 62378a2

Please sign in to comment.