From db8eb8f30c154ffc5500a902d8e36b8ed3339271 Mon Sep 17 00:00:00 2001 From: Aleksey Kuznetsov Date: Sat, 13 Feb 2021 18:45:59 +0300 Subject: [PATCH] Windows: Fix error with forward slashes in path (#220) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 97f218a..06e566d 100644 --- a/index.js +++ b/index.js @@ -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) {