1
0
Fork 0

print spawnargs

pull/1344/head
Cory Miller 2023-02-17 21:15:21 +00:00
parent 4f66571667
commit f6011790d6
1 changed files with 4 additions and 0 deletions

View File

@ -153,6 +153,10 @@ export async function rmRF(inputPath: string): Promise<void> {
)
}
result.on('spawn', (data) => {
console.log(`spawn: ${result.spawnargs}`)
})
result.stdout.on('data', (data) => {
console.log(`stdout: ${data}`)
});