From 020ed2f7bb1cf68ede700150f8da5a294db75466 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 6 Apr 2023 13:41:09 +0200 Subject: [PATCH] Fix incorrect hostname command --- scripts/Arch/OS/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Arch/OS/setup.sh b/scripts/Arch/OS/setup.sh index f72abcd1..ef8bb053 100755 --- a/scripts/Arch/OS/setup.sh +++ b/scripts/Arch/OS/setup.sh @@ -46,7 +46,7 @@ arch-chroot "$ARCH_MOUNT_ROOT" locale-gen; echo "LANG=$ARCH_LANG" | arch-chroot "$ARCH_MOUNT_ROOT" tee /etc/locale.conf > /dev/null; echo "KEYMAP=$ARCH_KEYMAP" | arch-chroot "$ARCH_MOUNT_ROOT" tee /etc/vconsole.conf > /dev/null; -arch-chroot "$ARCH_MOUNT_ROOT" echo "$ARCH_HOSTNAME" > /etc/hostname; +echo "$ARCH_HOSTNAME" | arch-chroot "$ARCH_MOUNT_ROOT" tee /etc/hostname; arch-chroot "$ARCH_MOUNT_ROOT" mkinitcpio -P; arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/GRUB/install.sh";