From 7046fff5ab19d3fe312263e6d33121792f3512de Mon Sep 17 00:00:00 2001 From: simono41 Date: Fri, 27 Apr 2018 19:04:17 +0000 Subject: [PATCH] downloadfix --- arch-install | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch-install b/arch-install index 911b2c9..f210d49 100755 --- a/arch-install +++ b/arch-install @@ -20,7 +20,13 @@ fi echo "Logged in as root" function minimalinstallation() { + +if [ -f base.txt ]; then + pacstrap -c -d -G -M ${mountpoint} $(cat base.txt) +elif [ -f /opt/${repo}/base.txt ]; then pacstrap -c -d -G -M ${mountpoint} $(cat /opt/${repo}/base.txt) +fi + } function gitclone() {