We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73572ac commit ba9dc7dCopy full SHA for ba9dc7d
Extension/PesterTask/src/pester.ts
@@ -92,7 +92,7 @@ export async function run() {
92
logInfo(`${executable} ${args.join(" ")}`);
93
94
var spawn = require("child_process").spawn, child;
95
- child = spawn(executable, args);
+ child = spawn(executable, args, {windowsVerbatimArguments: true});
96
child.stdout.on("data", function (data) {
97
logInfo(data.toString());
98
});
Extension/PesterTask/src/pesterv10.ts
0 commit comments