From 23df355bfe2718d647d37816a3351c7ef6af8ab9 Mon Sep 17 00:00:00 2001 From: lemniskett Date: Tue, 10 Nov 2020 00:07:10 +0700 Subject: [PATCH] Proper symlink command. --- chroot_setup.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chroot_setup.bash b/chroot_setup.bash index f52dfc1..206fe62 100755 --- a/chroot_setup.bash +++ b/chroot_setup.bash @@ -31,7 +31,7 @@ echo "Enter your timezone, for example : \"Asia/Jakarta\"" while true; do read TIMEZONE \ && [[ -e /usr/share/zoneinfo/$TIMEZONE ]] \ - && ln -s /etc/localtime \ + && ln -s /usr/share/zoneinfo/$TIMEZONE /etc/localtime \ && break \ || err "Timezone not found" done