From 527cf2ba122d5d65908d0994a0ebf680481f83b0 Mon Sep 17 00:00:00 2001 From: BenediktMKuehne Date: Fri, 21 Oct 2022 09:56:06 +0200 Subject: [PATCH] fix fail if already satisfied --- installer/I01_default_apps.sh | 2 +- installer/I01_default_apps_host.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/I01_default_apps.sh b/installer/I01_default_apps.sh index 6463e05f2..d6b034aa1 100644 --- a/installer/I01_default_apps.sh +++ b/installer/I01_default_apps.sh @@ -78,7 +78,7 @@ I01_default_apps(){ #sudo -u linuxbrew CI=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" sudo -u linuxbrew CI=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - pip3 install -U requests 2>/dev/null + pip3 install -U requests 2>/dev/null || true ;; esac fi diff --git a/installer/I01_default_apps_host.sh b/installer/I01_default_apps_host.sh index 67d8e805a..6805a442a 100644 --- a/installer/I01_default_apps_host.sh +++ b/installer/I01_default_apps_host.sh @@ -49,7 +49,7 @@ I01_default_apps_host() { y|Y ) echo apt-get install "${INSTALL_APP_LIST[@]}" -y - pip3 install -U requests 2>/dev/null + pip3 install -U requests 2>/dev/null || true ;; esac }