From 26d01e4eaeaaabb80efb79aad7fa3ccdf54f3f0b Mon Sep 17 00:00:00 2001 From: gabeszm Date: Sat, 21 Dec 2024 13:54:07 +0100 Subject: [PATCH] change --- arch_install.sh | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/arch_install.sh b/arch_install.sh index a98a44f..b3a3e8f 100644 --- a/arch_install.sh +++ b/arch_install.sh @@ -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