From bc2f5918443b7e212bc3ffbdad9a74af96f3e5bb Mon Sep 17 00:00:00 2001 From: daijro Date: Wed, 11 Sep 2024 04:59:26 -0500 Subject: [PATCH] LibreWolf: Fix bootstrap Merges fix https://gitlab.com/librewolf-community/browser/source/-/commit/70ad9466cb471509e858b103cc49b4eba97017d0 --- patches/librewolf/bootstrap.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/librewolf/bootstrap.patch b/patches/librewolf/bootstrap.patch index ae0a483..337bfd5 100644 --- a/patches/librewolf/bootstrap.patch +++ b/patches/librewolf/bootstrap.patch @@ -1,5 +1,5 @@ diff --git a/python/mozversioncontrol/mozversioncontrol/__init__.py b/python/mozversioncontrol/mozversioncontrol/__init__.py -index f9a9b0d6bd1f..c5c437b3f220 100644 +index f9a9b0d6bd1f..f763871f6a29 100644 --- a/python/mozversioncontrol/mozversioncontrol/__init__.py +++ b/python/mozversioncontrol/mozversioncontrol/__init__.py @@ -1144,7 +1144,7 @@ class SrcRepository(Repository): @@ -7,7 +7,7 @@ index f9a9b0d6bd1f..c5c437b3f220 100644 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("\\", "/") ++ res.append(os.path.join(base, name).replace("\\", "/")) return res def get_tracked_files_finder(self, path): \ No newline at end of file