This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check whether cocogitto is installed | |
if ! cog bump --help >/dev/null; then | |
>&2 echo 'error: please install cocogitto' | |
exit 1 | |
fi | |
# Check whether cargo-bump is installed | |
if ! cargo bump --help >/dev/null; then | |
>&2 echo 'error: please install cargo-bump' | |
exit 1 |