From eef7c6056f656434e54866ae9bbb4ea501aa1061 Mon Sep 17 00:00:00 2001 From: simono41 Date: Wed, 22 Aug 2018 00:19:02 +0200 Subject: [PATCH] fix --- arch-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch-install b/arch-install index 03956f4..9ecef70 100755 --- a/arch-install +++ b/arch-install @@ -323,7 +323,7 @@ function removeinstaller { } function freshinstall { -if [ "${update}" != "n" ] && [ "${offline}" == "n" ]; then +if [ "${update}" != "n" ] && [ "${offline}" != "n" ]; then arch-chroot ${mountpoint} "cd /opt/${repo}/; git pull; pacman -Syu $(cat /opt/${repo}/packages_${version}.txt) --needed --noconfirm" fi }