@openacp/cli 2026.403.5 → 2026.403.6
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 +5 -9
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10646,7 +10646,7 @@ var PathGuard = class {
|
|
|
10646
10646
|
reason: `Path is outside workspace boundary: ${realPath}`
|
|
10647
10647
|
};
|
|
10648
10648
|
}
|
|
10649
|
-
if (isWithinCwd) {
|
|
10649
|
+
if (isWithinCwd && !isWithinAllowed) {
|
|
10650
10650
|
const relativePath = path6.relative(this.cwd, realPath);
|
|
10651
10651
|
if (relativePath === ".openacpignore") {
|
|
10652
10652
|
return { allowed: true, reason: "" };
|