lib: Update no-op message in case of stable update
This commit is contained in:
@@ -239,7 +239,11 @@ _bash-it_update-() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
else
|
else
|
||||||
echo "Bash-it is up to date, nothing to do!"
|
if [[ ${version} == "stable" ]]; then
|
||||||
|
echo "You're on the latest stable version. If you want to check out the latest 'dev' version, please run \"bash-it update dev\""
|
||||||
|
else
|
||||||
|
echo "Bash-it is up to date, nothing to do!"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
cd "${old_pwd}" &> /dev/null || return
|
cd "${old_pwd}" &> /dev/null || return
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user