@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/cli.js +1 -0
- package/dist/cli.js.map +2 -2
- package/dist/index.js +1 -0
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3361,6 +3361,7 @@ function ensurePlanOutboxDirs() {
|
|
|
3361
3361
|
return { outboxDir, archiveDir };
|
|
3362
3362
|
}
|
|
3363
3363
|
function isTmpOnlyPath(filePath) {
|
|
3364
|
+
if (filePath.startsWith("/tmp/") || filePath.startsWith("/var/folders/")) return true;
|
|
3364
3365
|
const resolved = path13.resolve(filePath);
|
|
3365
3366
|
return resolved.startsWith("/tmp/") || resolved.startsWith(path13.join("/var", "folders"));
|
|
3366
3367
|
}
|