mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-25 14:06:18 +00:00
* fix(sandbox): drop ignored directories from remote list_dir Remote providers listed node_modules/.git and similar entries through the shared remote_list_dir parser, while the local list_dir and the remote glob/grep implementations all skip them via should_ignore_path. Apply the same rule in the shared parser so remote listings match both, filtering after the empty-output check so an all-ignored directory returns an empty list instead of a missing-path error. * fix(sandbox): apply ignore patterns relative to the listing root should_ignore_path checked every component of the absolute entry path, so an ancestor of the listing root whose name matches a pattern (`build`, `env`, `logs`, …) hid the root's contents: `ls /srv/build/workspace` returned [] even though the directory had files. The local walk only filters descendants of the requested root and still returns that file. Match patterns against the path relative to `resolved` instead, keep the requested root itself, and keep entries that cannot be placed relative to the root (a symlinked root is printed resolved by `find -H`) rather than dropping them. Regression tests cover an explicitly requested ignored root, ignored ancestors outside the root, and both cases through the real find pipeline.