From 89e889bd5a4fdf69c47b568821015ff7854278e6 Mon Sep 17 00:00:00 2001 From: Rahul Tarak Date: Fri, 23 Oct 2020 02:47:05 +0530 Subject: [PATCH] Resolve (#202) by escaping target --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index e0d30b7..58db862 100644 --- a/index.js +++ b/index.js @@ -102,7 +102,7 @@ module.exports = async (target, options) => { encodedArguments.push(`"\`"${app}\`""`, '-ArgumentList'); appArguments.unshift(target); } else { - encodedArguments.push(`"\`"${target}\`""`); + encodedArguments.push(`'${target}'`); } if (appArguments.length > 0) {