Skip to content

Commit

Permalink
Merge pull request #361 from BenediktMKuehne/req-fix
Browse files Browse the repository at this point in the history
fix fail if already satisfied
  • Loading branch information
m-1-k-3 authored Oct 21, 2022
2 parents 70d9c96 + 527cf2b commit ac234dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion installer/I01_default_apps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion installer/I01_default_apps_host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit ac234dd

Please sign in to comment.