diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 43057e83d9..7bcf9434cc 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -1824,10 +1824,6 @@ export class Config { * @returns true if the path is allowed, false otherwise. */ isPathAllowed(absolutePath: string): boolean { - if (this.interactive && path.isAbsolute(absolutePath)) { - return true; - } - const realpath = (p: string) => { let resolved: string; try {