From 64e2864b2d9f89915c82fdce6b0a870a70a7b505 Mon Sep 17 00:00:00 2001 From: punix Date: Thu, 2 Nov 2023 10:23:48 +0100 Subject: [PATCH] installer fehler gefixt --- installer1.0.5 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/installer1.0.5 b/installer1.0.5 index 7cb4cee..92920f3 100755 --- a/installer1.0.5 +++ b/installer1.0.5 @@ -14,22 +14,22 @@ echo Wire-G wird installiert. if grep -i 'mint\|debian\|ubuntu\|pop|' /etc/os-release > /dev/null 2>&1 then - if ! which yad > /dev/null ; then sudo apt install yad -y > /dev/null + if ! which yad > /dev/null ; then sudo apt install yad -y > /dev/null ; fi echo yad wird installiert. Bitte warten... - if ! which notify-send > /dev/null ; then sudo apt install libnotify-bin -y > /dev/null + if ! which notify-send > /dev/null ; then sudo apt install libnotify-bin -y > /dev/null ; fi echo libnotify wird installiert. Bitte warten... elif grep -i 'arch\|manjaro\|garuda\|endeavour|' /etc/os-release > /dev/null 2>&1 then - if ! which yad > /dev/null ; then sudo pacman -S --noconfirm yad > /dev/null + if ! which yad > /dev/null ; then sudo pacman -S --noconfirm yad > /dev/null ; fi echo yad wird installiert. Bitte warten... - if ! which notify-send > /dev/null ; then sudo pacman -S --noconfirm libnotify > /dev/null + if ! which notify-send > /dev/null ; then sudo pacman -S --noconfirm libnotify > /dev/null ; fi echo libnotify wird installiert. Bitte warten... elif grep -i 'fedora' /etc/os-release > /dev/null 2>&1 then - if ! which yad > /dev/null ; then sudo dnf install yad > /dev/null + if ! which yad > /dev/null ; then sudo dnf install yad > /dev/null ; fi echo yad wird installiert. Bitte warten... - if ! which notify-send > /dev/null ; then sudo dnf install libnotify > /dev/null + if ! which notify-send > /dev/null ; then sudo dnf install libnotify > /dev/null ; fi echo libnotify wird installiert. Bitte warten... elif grep -i 'suse' /etc/os-release > /dev/null 2>&1