0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 13:43:04 -05:00
LibreWolf/patches/bootstrap.patch
2024-07-11 23:04:48 +02:00

16 lines
688 B
Diff

--- a/python/mozversioncontrol/mozversioncontrol/__init__.py
+++ b/python/mozversioncontrol/mozversioncontrol/__init__.py
@@ -1019,9 +1019,11 @@ class SrcRepository(Repository):
"""
res = []
# move away the .git or .hg folder from path to more easily test in a hg/git repo
- for root, dirs, files in os.walk("."):
+ for root, dirs, files in os.walk(path):
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
def get_tracked_files_finder(self, path):