We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100f534 commit 0c39766Copy full SHA for 0c39766
Extension/PesterTask/src/pester.ts
@@ -45,7 +45,7 @@ export async function run() {
45
}
46
47
// we need to not pass the null param
48
- var args = ['"' + __dirname + "\\Pester.ps1" + '"',
+ var args = [__dirname + "\\Pester.ps1",
49
"-scriptFolder", scriptFolder,
50
"-resultsFile", resultsFile,
51
"-run32Bit", run32Bit,
@@ -94,7 +94,7 @@ export async function run() {
94
logInfo(`${executable} ${args.join(" ")}`);
95
96
var spawn = require("child_process").spawn, child;
97
- child = spawn(executable, args, {windowsVerbatimArguments: true});
+ child = spawn(executable, args);
98
child.stdout.on("data", function (data) {
99
logInfo(data.toString());
100
});
0 commit comments