1
0
Fork 0

why are files still there

pull/1344/head
Cory Miller 2023-02-17 20:53:21 +00:00
parent a25a620745
commit b0f4d114f3
1 changed files with 8 additions and 0 deletions

View File

@ -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)
})