mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 14:59:06 +08:00
why are files still there
This commit is contained in:
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…
x
Reference in New Issue
Block a user