1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Merge branch 'master' into user-migration-bug-fix-test

This commit is contained in:
Sam Rose 2023-11-03 16:00:45 +00:00 committed by GitHub
commit d0e830e4c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{
"version": "2.12.9",
"version": "2.12.10",
"npmClient": "yarn",
"packages": [
"packages/*"

View file

@ -18,8 +18,12 @@ export const ObjectStoreBuckets = {
}
const bbTmp = join(tmpdir(), ".budibase")
if (!fs.existsSync(bbTmp)) {
try {
fs.mkdirSync(bbTmp)
} catch (e: any) {
if (e.code !== "EEXIST") {
throw e
}
}
export function budibaseTempDir() {