2023-10-27 07:17:39 -05:00
|
|
|
--- a/python/mozversioncontrol/mozversioncontrol/__init__.py
|
|
|
|
+++ b/python/mozversioncontrol/mozversioncontrol/__init__.py
|
2024-07-11 16:04:48 -05:00
|
|
|
@@ -1019,9 +1019,11 @@ class SrcRepository(Repository):
|
2024-05-15 16:55:26 -05:00
|
|
|
"""
|
|
|
|
res = []
|
2024-05-15 16:42:59 -05:00
|
|
|
# move away the .git or .hg folder from path to more easily test in a hg/git repo
|
2024-05-15 16:55:26 -05:00
|
|
|
- for root, dirs, files in os.walk("."):
|
|
|
|
+ for root, dirs, files in os.walk(path):
|
2024-05-15 16:42:59 -05:00
|
|
|
for name in files:
|
|
|
|
- res.append(os.path.join(root, name))
|
|
|
|
+ res.append(
|
|
|
|
+ os.path.relpath(os.path.join(root, name), path).replace("\\", "/")
|
|
|
|
+ )
|
|
|
|
return res
|
2023-10-27 07:17:39 -05:00
|
|
|
|
2024-05-15 16:42:59 -05:00
|
|
|
def get_tracked_files_finder(self, path):
|