@budibase/backend-core 2.12.10 → 2.12.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3336,8 +3336,12 @@ var init_utils3 = __esm({
3336
3336
  PLUGINS: environment_default.PLUGIN_BUCKET_NAME
3337
3337
  };
3338
3338
  bbTmp = (0, import_path.join)((0, import_os.tmpdir)(), ".budibase");
3339
- if (!import_fs2.default.existsSync(bbTmp)) {
3339
+ try {
3340
3340
  import_fs2.default.mkdirSync(bbTmp);
3341
+ } catch (e) {
3342
+ if (e.code !== "EEXIST") {
3343
+ throw e;
3344
+ }
3341
3345
  }
3342
3346
  }
3343
3347
  });