Skip to content

Commit

Permalink
fix issue extractArchive dest doesn't work TheTechsTech#29
Browse files Browse the repository at this point in the history
  • Loading branch information
sergxerj committed Jul 5, 2023
1 parent 3d28076 commit ff3a723
Showing 1 changed file with 1 addition and 1 deletion.
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 ff3a723

Please sign in to comment.