From 4af104a8eb7710894a932681f6386ece42cf8df2 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 17 Sep 2023 17:38:50 -0500 Subject: [PATCH] Update linupx-scripts.sh --- linupx-scripts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linupx-scripts.sh b/linupx-scripts.sh index c5caafd..98ed9d5 100755 --- a/linupx-scripts.sh +++ b/linupx-scripts.sh @@ -150,10 +150,10 @@ 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 "${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, life is good!${idsCL[Default]}" echo - echo -e "${idsCL[Green]}Python-Pip Upgrades has completed${idsCL[Default]}" + echo -e "${idsCL[Green]}Python-Pip Updates has completed${idsCL[Default]}" [ ${action-x} ] && exit 0 ENTER2CONTINUE }