From 644b80d0bd1323bdd47be5103a6ac854679ff5e0 Mon Sep 17 00:00:00 2001 From: Daniel Girtler Date: Tue, 7 Jun 2022 18:56:15 +1000 Subject: Don't generate any backup locales files (#1313) Co-authored-by: Daniel Girtler --- archinstall/locales/locales_generator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/locales/locales_generator.sh b/archinstall/locales/locales_generator.sh index 9432f83f..cdd5be31 100755 --- a/archinstall/locales/locales_generator.sh +++ b/archinstall/locales/locales_generator.sh @@ -7,6 +7,6 @@ find . -type f -iname "*.py" | xargs xgettext --join-existing --no-location --om for file in $(find locales/ -name "base.po"); do echo "Updating: $file" path=$(dirname $file) - msgmerge --quiet --no-location --width 512 --update $file locales/base.pot + msgmerge --quiet --no-location --width 512 --backup none --update $file locales/base.pot msgfmt -o $path/base.mo $file done -- cgit v1.2.3-54-g00ecf