Files
lbmk/config/firefox/default/patches/0004-bootstrap.patch.patch
T
Leah Rowe 2b34aeea5d WIP: convert to lwmk
Signed-off-by: Leah Rowe <leah@libreboot.org>
2026-09-08 06:44:40 +01:00

26 lines
1016 B
Diff

From 50902dac61f2447168c46115d6ae8023908eb00e Mon Sep 17 00:00:00 2001
From: LibreWolf Developers <noreply@librewolf.net>
Date: Sun, 6 Sep 2026 10:09:16 +0100
Subject: [PATCH 04/52] bootstrap.patch
---
python/mozversioncontrol/mozversioncontrol/repo/source.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/mozversioncontrol/mozversioncontrol/repo/source.py b/python/mozversioncontrol/mozversioncontrol/repo/source.py
index 85048fafce91..71904adc1657 100644
--- a/python/mozversioncontrol/mozversioncontrol/repo/source.py
+++ b/python/mozversioncontrol/mozversioncontrol/repo/source.py
@@ -111,7 +111,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):
--
2.47.3