This commit is contained in:
Cory Miller
2023-02-21 19:29:08 +00:00
parent 19e20568d3
commit 1f17f8bd0b
2 changed files with 30 additions and 8 deletions
-1
View File
@@ -136,7 +136,6 @@ export async function rmRF(inputPath: string): Promise<void> {
} catch (err) {
// if you try to delete a file that doesn't exist, desired result is achieved
// other errors are valid
console.log(err)
if (err.code !== 'ENOENT') throw err
}