This commit is contained in:
Cory Miller
2023-02-22 15:48:52 +00:00
parent d589c08bf4
commit eed631025c
2 changed files with 6 additions and 4 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
}