Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/locales
diff options
context:
space:
mode:
authorDaniel Girtler <blackrabbit256@gmail.com>2022-06-07 18:56:15 +1000
committerGitHub <noreply@github.com>2022-06-07 10:56:15 +0200
commit644b80d0bd1323bdd47be5103a6ac854679ff5e0 (patch)
treed6904ca17fb79793c63fed53b78f534a444025fa /archinstall/locales
parent766176cfe294e6fff5602ea3147e5afd02197fe5 (diff)
Don't generate any backup locales files (#1313)
Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com>
Diffstat (limited to 'archinstall/locales')
-rwxr-xr-xarchinstall/locales/locales_generator.sh2
1 files changed, 1 insertions, 1 deletions
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