diff --git a/scripts/librewolf-patches.py b/scripts/librewolf-patches.py index 48dc6bc..01a6c58 100755 --- a/scripts/librewolf-patches.py +++ b/scripts/librewolf-patches.py @@ -161,12 +161,6 @@ with open(file, "w") as f: f.write("{}-{}".format(version,release)) - print("-> Downloading locales from https://librewolf.dev/mirror/firefox-l10n") - with TemporaryDirectory() as tmpdir: - exec(f"git clone --depth=1 https://librewolf.dev/mirror/firefox-l10n {tmpdir}/l10n") - exec(f"rm -rf {tmpdir}/l10n/.git {tmpdir}/l10n/.github {tmpdir}/l10n/LICENSE {tmpdir}/l10n/README") - exec(f"mv {tmpdir}/l10n lw/l10n") - print("-> Patching appstrings.properties") # Why is "Firefox" hardcoded there??? exec("find . -path '*/appstrings.properties' -exec sed -i s/Firefox/LibreWolf/ {} \\;")