This commit is contained in:
gabeszm 2024-12-21 13:54:07 +01:00
parent 387b55f30c
commit 26d01e4eae

View file

@ -85,20 +85,6 @@ fi
# Választott DE kódok futtatása
if [ "$de_choice" == "1" ]; then
# Letöltjük a szkriptet
echo "Yay telepítése..."
curl -Ls "$YAY_URL" -o yay.sh
# Ellenőrizzük, hogy sikerült-e letölteni
if [ -f "yay.sh" ]; then
echo "A YaY telepítő szkript sikeresen letöltve. Futtatás..."
sudo chmod +x yay.sh
bash -x yay.sh | tee yay.log
else
echo "Nem sikerült letölteni a Yaru telepítő szkriptet."
exit 1
fi
echo "GNOME telepítése..."
# Letöltjük a szkriptet
curl -Ls "$GNOME_URL" -o gnome.sh
@ -112,6 +98,19 @@ if [ "$de_choice" == "1" ]; then
exit 1
fi
# Letöltjük a szkriptet
echo "Yay telepítése..."
curl -Ls "$YAY_URL" -o yay.sh
# Ellenőrizzük, hogy sikerült-e letölteni
if [ -f "yay.sh" ]; then
echo "A YaY telepítő szkript sikeresen letöltve. Futtatás..."
sudo chmod +x yay.sh
bash -x yay.sh | tee yay.log
else
echo "Nem sikerült letölteni a Yaru telepítő szkriptet."
exit 1
fi
# Letöltjük a szkriptet
echo "Yaru telepítése..."
curl -Ls "$YARU_URL" -o yaru.sh
@ -119,7 +118,7 @@ if [ "$de_choice" == "1" ]; then
if [ -f "yaru.sh" ]; then
echo "A Yaru telepítő szkript sikeresen letöltve. Futtatás..."
sudo chmod +x yaru.sh
sudo bash -x yaru.sh | tee yaru.log
bash -x yaru.sh | tee yaru.log
else
echo "Nem sikerült letölteni a Yaru telepítő szkriptet."
exit 1