mirror of https://github.com/actions/toolkit
print spawnargs
parent
4f66571667
commit
f6011790d6
|
@ -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}`)
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue