From 9ba6e88056651491439c6c28ab2ad3bd83d3e122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20J=C3=BCrgens?= Date: Sun, 6 Oct 2024 17:49:12 +0200 Subject: [PATCH] Fix l10n paths --- scripts/librewolf-patches.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/librewolf-patches.py b/scripts/librewolf-patches.py index 364c1e0..48dc6bc 100755 --- a/scripts/librewolf-patches.py +++ b/scripts/librewolf-patches.py @@ -173,7 +173,8 @@ def librewolf_patches(): else: target_path = Path( "lw", "l10n", - *rel_path.parts + *rel_path.parts[0:2], + *rel_path.parts[1:] ) target_path.parent.mkdir(parents=True, exist_ok=True)