@kynver-app/runtime 0.1.37 → 0.1.38

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
@@ -3401,6 +3401,7 @@ function ensurePlanOutboxDirs() {
3401
3401
  return { outboxDir, archiveDir };
3402
3402
  }
3403
3403
  function isTmpOnlyPath(filePath) {
3404
+ if (filePath.startsWith("/tmp/") || filePath.startsWith("/var/folders/")) return true;
3404
3405
  const resolved = path13.resolve(filePath);
3405
3406
  return resolved.startsWith("/tmp/") || resolved.startsWith(path13.join("/var", "folders"));
3406
3407
  }