mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
fix: Convert paths to POSIX format for .gitignore matching on Windows
This commit is contained in:
parent
fb03c4c311
commit
289e13cb46
1 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ class FileWatcher:
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
dump(rel_path)
|
dump(rel_path)
|
||||||
|
|
||||||
if self.gitignore_spec and self.gitignore_spec.match_file(str(rel_path)):
|
if self.gitignore_spec and self.gitignore_spec.match_file(rel_path.as_posix() + ("/" if path_abs.is_dir() else "")):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
|
@ -121,7 +121,7 @@ class FileWatcher:
|
||||||
str(path)
|
str(path)
|
||||||
for path in self.root.iterdir()
|
for path in self.root.iterdir()
|
||||||
if not self.gitignore_spec.match_file(
|
if not self.gitignore_spec.match_file(
|
||||||
str(path.relative_to(self.root)) + ("/" if path.is_dir() else "")
|
path.relative_to(self.root).as_posix() + ("/" if path.is_dir() else "")
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
# Fallback to watching root if all top-level items are filtered out
|
# Fallback to watching root if all top-level items are filtered out
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue