Skip to content

Commit dca6473

Browse files
authored
Added windowsVerbatimArguments to spawn options
windowsVerbatimArguments skips the wrapping of each commandArray member in a set of double quotes. This is necessary because there are already double quotes used by the sdfcli.bat
1 parent e4be03a commit dca6473

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/netsuite-sdf.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,8 @@ export class NetSuiteSDF {
687687

688688
this.sdfcli = spawn('sdfcli', commandArray, {
689689
cwd: this.rootPath,
690-
stdin: stdinSubject
690+
stdin: stdinSubject,
691+
windowsVerbatimArguments: true
691692
});
692693

693694
this.showStatus();

0 commit comments

Comments
 (0)