Only clean up app tmp dir if it exists during testing
This commit is contained in:
parent
dd02b8cf6c
commit
82c00e6757
|
@ -238,7 +238,10 @@ exports.readFileSync = (filepath, options = "utf8") => {
|
||||||
*/
|
*/
|
||||||
exports.cleanup = appIds => {
|
exports.cleanup = appIds => {
|
||||||
for (let appId of 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 })
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue