Downgrade duplicate message about versions to info

Fixes #155
This commit is contained in:
3wc 2021-05-30 20:11:15 +02:00
parent 6c9dff0eed
commit e04c5228de
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
- Add Bash completion for `recipe ..` ([8c93d1a](https://git.autonomic.zone/coop-cloud/abra/commit/8c93d1a))
- Tweak README parsing in `app-json.py` ([b14219b](https://git.autonomic.zone/coop-cloud/abra/commit/b14219b))
- Add fallback names to `app.json` ([#157](https://git.autonomic.zone/coop-cloud/abra/issues/157))
- Remove duplicate message ([#155](https://git.autonomic.zone/coop-cloud/abra/issues/155))
# abra 0.7.4 (2021-05-10)

2
abra
View File

@ -669,7 +669,7 @@ get_recipe_versions() {
get_recipe_version_latest() {
if [ "${#RECIPE_VERSIONS[@]}" = 0 ]; then
VERSION=""
warning "No version specified, dangerously using latest git 😨"
info "No versions found"
else
VERSION="${RECIPE_VERSIONS[-1]}"
info "Chose version $VERSION"