Skip to content

Commit

Permalink
Windows: Fix error with forward slashes in path (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzalekon committed Feb 13, 2021
1 parent 02bff01 commit db8eb8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -118,7 +118,7 @@ module.exports = async (target, options) => {
encodedArguments.push(`"\`"${app}\`""`, '-ArgumentList');
appArguments.unshift(target);
} else {
encodedArguments.push(`"\`"${target}\`""`);
encodedArguments.push(`"${target}"`);
}

if (appArguments.length > 0) {
Expand Down

0 comments on commit db8eb8f

Please sign in to comment.