From 476c498d51b46d389bc190fdcec7b408518d3d60 Mon Sep 17 00:00:00 2001 From: Robin Harmsen Date: Mon, 30 Sep 2019 23:44:03 +0200 Subject: [PATCH] Move log message (#745) * Move log message moved the 'reassurance' log INFO message "Don't worry, this temporary installation is not overwriting your current one." to earlier in the process * :pencil2: Tweak * Update config.json * :pencil2: Markdown tweak --- check_config/CHANGELOG.md | 4 ++++ check_config/config.json | 2 +- check_config/data/run.sh | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/check_config/CHANGELOG.md b/check_config/CHANGELOG.md index 0c4d111..2c64698 100644 --- a/check_config/CHANGELOG.md +++ b/check_config/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.1 + +- Moved the 'reassurance' log message "Don't worry, this temporary installation is not overwriting your current one." to earlier in the process. + ## 3.0 - Use Home Assistant base image as base for this Add-on diff --git a/check_config/config.json b/check_config/config.json index f299ccf..dfdc5a6 100644 --- a/check_config/config.json +++ b/check_config/config.json @@ -1,6 +1,6 @@ { "name": "Check Home Assistant configuration", - "version": "3.0", + "version": "3.1", "slug": "check_config", "description": "Check current Home Assistant configuration against a new version", "url": "https://github.com/home-assistant/hassio-addons/tree/master/check_config", diff --git a/check_config/data/run.sh b/check_config/data/run.sh index 2e599a0..7f41a50 100755 --- a/check_config/data/run.sh +++ b/check_config/data/run.sh @@ -9,6 +9,7 @@ if [ "${VERSION}" != "latest" ]; then CMD="homeassistant==${VERSION}" fi +bashio::log.info "Don't worry, this temporary installation is not overwriting your current one." bashio::log.info "Installing Home Assistant: ${VERSION}..." bashio::log.info "Please be patient, this might take a few minutes..." @@ -20,7 +21,6 @@ if ! PIP_OUTPUT="$(pip3 install --find-links "${WHEELS_LINKS}" "${CMD}")"; then fi INSTALLED_VERSION="$(pip freeze | grep homeassistant)" bashio::log.info "Installed Home Assistant ${INSTALLED_VERSION##*=}" -bashio::log.info "Don't worry, this temporary installation is not overwriting your current one." # Making an temporary copy of your configuration bashio::log.info "Making a copy of your configuration for checking..."