Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-01-31 09:28:02 +0100
committerGitHub <noreply@github.com>2021-01-31 09:28:02 +0100
commit3e261c4033704a8e95f293ada18043f86ea228a1 (patch)
tree76ec7a2d068b7b44df6b88ac746c96e5e083b122
parent534669203a1f1fb7f072e12c3ff2b5be546a91ef (diff)
parent15714ebb86650585a9bd1d0eaf30941579e3020f (diff)
Merge pull request #104 from phisch/patch-1
Add correct locale to /etc/locale.gen
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index fb9e9724..4fb6b706 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -284,7 +284,7 @@ class Installer():
#sys_command(f'/usr/bin/arch-chroot {self.mountpoint} ln -s /usr/share/zoneinfo/{localtime} /etc/localtime')
#sys_command('/usr/bin/arch-chroot /mnt hwclock --hctosys --localtime')
self.set_hostname()
- self.set_locale('en_US.UTF-8')
+ self.set_locale('en_US')
# TODO: Use python functions for this
sys_command(f'/usr/bin/arch-chroot {self.mountpoint} chmod 700 /root')