From 4026fe1ff5d52640ef6d81eb55cbd9961619b543 Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Wed, 3 Feb 2021 09:56:40 +0100 Subject: [PATCH] Typos. --- easy-arch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index fdc36a0..4f3b6c4 100644 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -91,11 +91,11 @@ echo $hostname > /mnt/etc/hostname # Setting up locales. read -r -p "Please insert the locale you use in this format (xx_XX): " locale echo "$locale.UTF-8 UTF-8" > /mnt/etc/locale.gen -echo "LANG=\"$locale\".UTF-8" > /mnt/etc/locale.conf +echo "LANG=$locale.UTF-8" > /mnt/etc/locale.conf # Setting up keyboard layout. read -r -p "Please insert the keyboard layout you use: " kblayout -echo "KEYMAP=\"$kblayout\"" > /mnt/etc/vconsole.conf +echo "KEYMAP=$kblayout" > /mnt/etc/vconsole.conf # Setting hosts file. echo "Setting hosts file."