diff --git a/fresh.sh b/fresh.sh index 884036e..d2a7c8a 100755 --- a/fresh.sh +++ b/fresh.sh @@ -88,10 +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 - 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 + cd $(sudo -u $uname mktemp -d) + git clone https://aur.archlinux.org/yay.git . &>> $logfile + sudo -u $uname makepkg --noconfirm -si &>> $logfile } installation_loop() {