mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
Adopt safe_abs_path
This commit is contained in:
parent
2c32fe5eb8
commit
1c1411b506
3 changed files with 3 additions and 8 deletions
|
@ -1,5 +1,4 @@
|
|||
import json
|
||||
import os
|
||||
import shlex
|
||||
import subprocess
|
||||
import sys
|
||||
|
@ -350,7 +349,7 @@ class Commands:
|
|||
other_files = []
|
||||
chat_files = []
|
||||
for file in files:
|
||||
abs_file_path = os.path.abspath(os.path.join(self.coder.root, file))
|
||||
abs_file_path = self.coder.abs_root_path(file)
|
||||
if abs_file_path in self.coder.abs_fnames:
|
||||
chat_files.append(file)
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue