1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Only clean up app tmp dir if it exists during testing

This commit is contained in:
Andrew Kingston 2021-07-07 09:34:40 +01:00
parent dd02b8cf6c
commit 82c00e6757

View file

@ -238,7 +238,10 @@ exports.readFileSync = (filepath, options = "utf8") => {
*/
exports.cleanup = appIds => {
for (let appId of appIds) {
fs.rmdirSync(join(budibaseTempDir(), appId), { recursive: true })
const path = join(budibaseTempDir(), appId)
if (fs.existsSync(path)) {
fs.rmdirSync(path, { recursive: true })
}
}
}