change
This commit is contained in:
parent
387b55f30c
commit
26d01e4eae
1 changed files with 14 additions and 15 deletions
|
@ -85,20 +85,6 @@ fi
|
||||||
# Választott DE kódok futtatása
|
# Választott DE kódok futtatása
|
||||||
if [ "$de_choice" == "1" ]; then
|
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..."
|
echo "GNOME telepítése..."
|
||||||
# Letöltjük a szkriptet
|
# Letöltjük a szkriptet
|
||||||
curl -Ls "$GNOME_URL" -o gnome.sh
|
curl -Ls "$GNOME_URL" -o gnome.sh
|
||||||
|
@ -112,6 +98,19 @@ if [ "$de_choice" == "1" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
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
|
# Letöltjük a szkriptet
|
||||||
echo "Yaru telepítése..."
|
echo "Yaru telepítése..."
|
||||||
curl -Ls "$YARU_URL" -o yaru.sh
|
curl -Ls "$YARU_URL" -o yaru.sh
|
||||||
|
@ -119,7 +118,7 @@ if [ "$de_choice" == "1" ]; then
|
||||||
if [ -f "yaru.sh" ]; then
|
if [ -f "yaru.sh" ]; then
|
||||||
echo "A Yaru telepítő szkript sikeresen letöltve. Futtatás..."
|
echo "A Yaru telepítő szkript sikeresen letöltve. Futtatás..."
|
||||||
sudo chmod +x yaru.sh
|
sudo chmod +x yaru.sh
|
||||||
sudo bash -x yaru.sh | tee yaru.log
|
bash -x yaru.sh | tee yaru.log
|
||||||
else
|
else
|
||||||
echo "Nem sikerült letölteni a Yaru telepítő szkriptet."
|
echo "Nem sikerült letölteni a Yaru telepítő szkriptet."
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue