firefly-compiler 0.4.55 → 0.4.56
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
|
@@ -126,6 +126,7 @@ extend self: NodeSystem {
|
|
|
126
126
|
const newProcess = childProcess.spawn(command_, arguments_, {
|
|
127
127
|
cwd: workingDirectory_.value_,
|
|
128
128
|
windowsHide: true,
|
|
129
|
+
windowsVerbatimArguments: true,
|
|
129
130
|
shell: process.platform === 'win32',
|
|
130
131
|
signal: $task.controller.signal,
|
|
131
132
|
killSignal: killSignal_,
|
|
@@ -378,6 +378,7 @@ export async function NodeSystem_execute$(self_, command_, arguments_, standardI
|
|
|
378
378
|
const newProcess = childProcess.spawn(command_, arguments_, {
|
|
379
379
|
cwd: workingDirectory_.value_,
|
|
380
380
|
windowsHide: true,
|
|
381
|
+
windowsVerbatimArguments: true,
|
|
381
382
|
shell: process.platform === 'win32',
|
|
382
383
|
signal: $task.controller.signal,
|
|
383
384
|
killSignal: killSignal_,
|
package/package.json
CHANGED