Update chroot path in multiple tools to use '/workspaces/aiTools' for consistent file handling across the codebase.

This commit is contained in:
sebseb7
2025-08-12 03:50:16 +00:00
parent 182ccd34ca
commit 324aea5775
4 changed files with 4 additions and 4 deletions

View File

@@ -120,7 +120,7 @@ export async function run(args) {
const inputPath = args?.path || "";
const depth = Number.isInteger(args?.depth) ? args.depth : 1;
const includeHidden = args?.includeHidden ?? false;
const chrootPath = '/home/seb/src/aiTools/tmp';
const chrootPath = '/workspaces/aiTools';
if (!chrootPath) {
return { err: "Chroot path is required" };