Compare commits

..

No commits in common. "a43fa0b5b7bb89bc5daefa702411e84548623d17" and "fb2da1805782b92738ed77548e1969dce3b57e72" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -80,9 +80,9 @@ then
echo "Available updates: " echo "Available updates: "
while IFS= read -r PKG; do while IFS= read -r PKG; do
if [ $(echo "$PKG" | cut -f3) = "missing" ]; then if [ $(echo "$PKG" | cut -f3) = "missing" ]; then
PKG_NAME=$(echo $PKG | cut -f1 -d " ") PKG_NAME=$(echo "$PKG" | cut -f1)
if [ "$PKG_NAME" != "java" -a "$PKG_NAME" != "ruby" ]; then if [ "$PKG_NAME" != "java" -a "$PKG_NAME" != "ruby" ]; then
PKG_VER=$(echo $PKG | cut -f2 -d " ") PKG_VER=$(echo $PKG | cut -f2)
echo " $PKG_NAME - $PKG_VER (install with 'asdf install $PKG_NAME $PKG_VER' and set as global default with 'asdf global $PKG_NAME $PKG_VER')" echo " $PKG_NAME - $PKG_VER (install with 'asdf install $PKG_NAME $PKG_VER' and set as global default with 'asdf global $PKG_NAME $PKG_VER')"
fi fi
fi fi