firefly-compiler 0.4.53 → 0.4.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core/NodeSystem.ff
CHANGED
|
@@ -120,6 +120,7 @@ extend self: NodeSystem {
|
|
|
120
120
|
const newProcess = childProcess.spawn(command_, arguments_, {
|
|
121
121
|
cwd: workingDirectory_.value_,
|
|
122
122
|
windowsHide: true,
|
|
123
|
+
windowsVerbatimArguments: true,
|
|
123
124
|
shell: process.platform === 'win32',
|
|
124
125
|
signal: $task.controller.signal,
|
|
125
126
|
killSignal: killSignal_,
|
|
@@ -372,6 +372,7 @@ export async function NodeSystem_execute$(self_, command_, arguments_, standardI
|
|
|
372
372
|
const newProcess = childProcess.spawn(command_, arguments_, {
|
|
373
373
|
cwd: workingDirectory_.value_,
|
|
374
374
|
windowsHide: true,
|
|
375
|
+
windowsVerbatimArguments: true,
|
|
375
376
|
shell: process.platform === 'win32',
|
|
376
377
|
signal: $task.controller.signal,
|
|
377
378
|
killSignal: killSignal_,
|
package/package.json
CHANGED