From b8b7673ac90edfd338b74a2adfb578e2eab70552 Mon Sep 17 00:00:00 2001 From: maride Date: Mon, 4 Sep 2017 16:20:12 +0200 Subject: [PATCH] Move git install to install side, not ISO side --- flavours/user.flavour/install.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/flavours/user.flavour/install.sh b/flavours/user.flavour/install.sh index 355656f..e713a41 100755 --- a/flavours/user.flavour/install.sh +++ b/flavours/user.flavour/install.sh @@ -27,11 +27,10 @@ else echo -n " Set up zsh with ohmyzsh for $name? (Y/n) " read answer if [ "$answer" == "y" ] || [ "$answer" == "Y" ]; then - pacstrap /mnt zsh - pacman -Sy --noconfirm git - git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git /mnt/home/$name/.oh-my-zsh + pacstrap /mnt zsh git + pacstrap /mnt git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git /mnt/home/$name/.oh-my-zsh wget https://git.darknebu.la/maride/config/raw/master/zshrc -O /mnt/home/$name/.zshrc fi - amf_return=0 + amf_return=0 fi