fixed some minor issues in the install scripts

This commit is contained in:
2026-04-11 22:23:12 +02:00
parent ec6317c2ce
commit 0d91fde161
3 changed files with 21 additions and 17 deletions
+7 -3
View File
@@ -20,9 +20,13 @@ else
sudo pacman -S --needed base-devel git
echo "installiere yay via git ..."
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
cd ..
(
cd yay || {
echo "Fehler: CD in yay-Verzeichnis fehlgeschlagen";
exit 1;
}
makepkg -si
)
rm -rf yay
fi