From 4a43c836e8b500b8b129531c7dca08603916bb37 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 17 Sep 2023 17:43:23 -0500 Subject: [PATCH] Update linupx-scripts.sh --- linupx-scripts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linupx-scripts.sh b/linupx-scripts.sh index 98ed9d5..19aa304 100755 --- a/linupx-scripts.sh +++ b/linupx-scripts.sh @@ -150,7 +150,7 @@ PIPUPGRADE() { [ "${1}" == "ii" ] && ii=' --ignore-installed' || ii='' pipupdates=$(pip3 list --outdated --format=json | jq -r '.[] | "\(.name)==\(.latest_version)"') python3 -m pip install --upgrade pip - [ "${pipupdates}" != "" ] && echo ${pipupdates} | xargs -n1 pip3 install${ii} -U || echo -e "\n${idsCL[LightCyan]}There are no Python-Pip updates available, life is good!${idsCL[Default]}" + [ "${pipupdates}" != "" ] && echo ${pipupdates} | xargs -n1 pip3 install${ii} -U || echo -e "\n${idsCL[LightCyan]}There are no Python-Pip updates available to install${idsCL[Default]}" echo echo -e "${idsCL[Green]}Python-Pip Updates has completed${idsCL[Default]}"