From 6321ffdd9593068cd605dd4b66050d0980685b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Jacquet?= Date: Mon, 23 Sep 2019 15:38:15 +0200 Subject: [PATCH] Bash Add line to /etc/locale.gen instead of writing file --- bin/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/init b/bin/init index 6e9b8fc..89f3a00 100755 --- a/bin/init +++ b/bin/init @@ -6,7 +6,7 @@ if [ "$ROSARIOSIS_LANG" == "en_US" ]; then else echo "Installing "$ROSARIOSIS_LANG apt-get install locales - echo $ROSARIOSIS_LANG'.UTF-8 UTF-8' > /etc/locale.gen + echo $ROSARIOSIS_LANG'.UTF-8 UTF-8' >> /etc/locale.gen locale-gen fi