From 4cad4d1081eff14e947ca7c6c9c3dcaba5a93d7f Mon Sep 17 00:00:00 2001 From: Toerd Date: Sun, 16 Sep 2018 00:18:11 +0200 Subject: [PATCH] Bugs fixed --- fresh.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fresh.sh b/fresh.sh index 016ce8d..996c5de 100755 --- a/fresh.sh +++ b/fresh.sh @@ -88,8 +88,9 @@ install_aur_helper() { dialog --title "Installing the AUR Helper" --infobox "Installing dependencies..." 0 0 pacman --noconfirm --needed -S go &>> $logfile dialog --title "Installing the AUR Helper" --infobox "Cloning repository..." 0 0 - cd "$(sudo -u '$uname' mktemp -d)" || exit - git clone https://aur.archlinux.org/yay.git . &>> $logfile + d=$(sudo -u '$uname' mktemp -d) || exit + git clone https://aur.archlinux.org/yay.git $d &>> $logfile + cd $d sudo -u "$uname" makepkg --noconfirm -si &>> $logfile }