Browse Source

fix: file.list relative to root

Adam 5 months ago
parent
commit
97a41062c9
1 changed files with 1 additions and 2 deletions
  1. 1 2
      packages/opencode/src/file/index.ts

+ 1 - 2
packages/opencode/src/file/index.ts

@@ -154,13 +154,12 @@ export namespace File {
       if (exclude.includes(entry.name)) continue
       const fullPath = path.join(resolved, entry.name)
       const relativePath = path.relative(Instance.directory, fullPath)
-      const relativeToRoot = path.relative(Instance.worktree, fullPath)
       const type = entry.isDirectory() ? "directory" : "file"
       nodes.push({
         name: entry.name,
         path: relativePath,
         type,
-        ignored: ignored(type === "directory" ? relativeToRoot + "/" : relativeToRoot),
+        ignored: ignored(type === "directory" ? relativePath + "/" : relativePath),
       })
     }
     return nodes.sort((a, b) => {