Skip to content

Commit fd165d6

Browse files
Merge pull request #58 from pester/handle-spaces
Handle spaces in paths - Fixes #53
2 parents 73572ac + 135181b commit fd165d6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Extension/PesterTask/PesterV9/task.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"author": "Pester",
1313
"version": {
1414
"Major": 9,
15-
"Minor": 3,
15+
"Minor": 4,
1616
"Patch": 0
1717
},
1818
"demands": [],

Extension/PesterTask/src/pester.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export async function run() {
9292
logInfo(`${executable} ${args.join(" ")}`);
9393

9494
var spawn = require("child_process").spawn, child;
95-
child = spawn(executable, args);
95+
child = spawn(executable, args, {windowsVerbatimArguments: true});
9696
child.stdout.on("data", function (data) {
9797
logInfo(data.toString());
9898
});

Extension/PesterTask/src/pesterv10.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export async function run() {
9292
logInfo(`${executable} ${args.join(" ")}`);
9393

9494
var spawn = require("child_process").spawn, child;
95-
child = spawn(executable, args);
95+
child = spawn(executable, args, {windowsVerbatimArguments: true});
9696
child.stdout.on("data", function (data) {
9797
logInfo(data.toString());
9898
});

0 commit comments

Comments
 (0)