Skip to content

Commit db8eb8f

Browse files
authoredFeb 13, 2021
Windows: Fix error with forward slashes in path (#220)
1 parent 02bff01 commit db8eb8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ module.exports = async (target, options) => {
118118
encodedArguments.push(`"\`"${app}\`""`, '-ArgumentList');
119119
appArguments.unshift(target);
120120
} else {
121-
encodedArguments.push(`"\`"${target}\`""`);
121+
encodedArguments.push(`"${target}"`);
122122
}
123123

124124
if (appArguments.length > 0) {

0 commit comments

Comments
 (0)
Please sign in to comment.