mirror of https://github.com/actions/toolkit
why are files still there
parent
a25a620745
commit
b0f4d114f3
|
@ -153,6 +153,14 @@ export async function rmRF(inputPath: string): Promise<void> {
|
|||
)
|
||||
}
|
||||
|
||||
result.stdout.on('data', (data) => {
|
||||
console.log(`stdout: ${data}`)
|
||||
});
|
||||
|
||||
result.stderr.on('data', (data) => {
|
||||
console.log(`stdout: ${data}`)
|
||||
});
|
||||
|
||||
result.on('close', code => {
|
||||
resolve(code)
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue