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 @@ -147,12 +147,6 @@ def librewolf_patches(): with open(file, "w") as f: f.write("{}-{}".format(version,release)) - print("-> Downloading locales from https://github.com/mozilla-l10n/firefox-l10n") - with TemporaryDirectory() as tmpdir: - exec(f"wget -qO {tmpdir}/l10n.zip 'https://codeload.github.com/mozilla-l10n/firefox-l10n/zip/refs/heads/main'") - exec(f"unzip -qo {tmpdir}/l10n.zip -d {tmpdir}/l10n") - exec(f"mv {tmpdir}/l10n/firefox-l10n-main lw/l10n") - print("-> Patching appstrings.properties") # Why is "Firefox" hardcoded there??? exec("find . -path '*/appstrings.properties' -exec sed -i s/Firefox/LibreWolf/ {} \;") > Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/publish.scm
AgeCommit message (Expand)Author
2024-04-15utils: Don’t re-export ‘call-with-temporary-output-file’....* guix/utils.scm: Remove re-export of ‘call-with-temporary-output-file’. Autoload a number of modules. * guix/download.scm, guix/import/hackage.scm, guix/import/hexpm.scm, guix/import/opam.scm, guix/import/pypi.scm, tests/cpio.scm, tests/egg.scm, tests/opam.scm, tests/publish.scm, tests/store-database.scm, tests/utils.scm: Adjust imports accordingly. Change-Id: I3f5e94631397996a30be2ea4ff8b50a3371e8ee7 Ludovic Courtès