From e04c5228defcdc7c664f80c3a7370bc57ea17cc9 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Sun, 30 May 2021 20:11:15 +0200 Subject: [PATCH] Downgrade duplicate message about versions to info Fixes #155 --- CHANGELOG.md | 1 + abra | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 789de53..03d07d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/abra b/abra index fe57895..e062a01 100755 --- a/abra +++ b/abra @@ -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"