-ajout d’info sur les mises-à-jour
This commit is contained in:
2018-08-04 16:15:41 +02:00
parent e4c7dd4ac4
commit 7ddba1376d

11
_pip.sh
View File

@@ -37,6 +37,17 @@ if [ -n "$upd" ]; then
echo "$pip_outdated" echo "$pip_outdated"
echo "" echo ""
for i in $upd
do
info=$($version show $i)
#info=$($version show $i | sed -n 4q)
#info=$($version show $i | head -5)
#info=$($version show $i | tail -n +5)
echo "$info" | head -4
echo ''
#echo "$i"
done
if [ -x "$(command -v pipdeptree)" ]; then if [ -x "$(command -v pipdeptree)" ]; then
echo -e "\033[4mCheck dependancies:\033[0m" echo -e "\033[4mCheck dependancies:\033[0m"
echo "Be carefull!! This updates can be a dependancie for some modules. Check for any incompatible version." echo "Be carefull!! This updates can be a dependancie for some modules. Check for any incompatible version."