mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 13:43:04 -05:00
66fd8569c8
privacy-security-settings-hotfix.patch seems to be merged upstream (https://bugzilla.mozilla.org/show_bug.cgi?id=1910312#a1966749_640478) bootstrap.patch should now be a simpler fix, as some parts were now improved upstream, too; we'll see if it breaks or not in a minute..
13 lines
677 B
Diff
13 lines
677 B
Diff
diff --git a/python/mozversioncontrol/mozversioncontrol/__init__.py b/python/mozversioncontrol/mozversioncontrol/__init__.py
|
|
index f9a9b0d6bd1f..c5c437b3f220 100644
|
|
--- a/python/mozversioncontrol/mozversioncontrol/__init__.py
|
|
+++ b/python/mozversioncontrol/mozversioncontrol/__init__.py
|
|
@@ -1144,7 +1144,7 @@ class SrcRepository(Repository):
|
|
for root, dirs, files in os.walk(self.path):
|
|
base = os.path.relpath(root, self.path)
|
|
for name in files:
|
|
- res.append(os.path.join(base, name))
|
|
+ res.append(os.path.join(base, name)).replace("\\", "/")
|
|
return res
|
|
|
|
def get_tracked_files_finder(self, path):
|