lib: Update no-op message in case of stable update
parent
8e6876719b
commit
9b208e7d5c
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue