From f71033ab50175940878ef3199f0cca2ff68264e8 Mon Sep 17 00:00:00 2001 From: SiliconAvatar <43505983+SiliconAvatar@users.noreply.github.com> Date: Sun, 2 Jun 2019 06:22:14 -0400 Subject: [PATCH] check_config: Additional information in log output to avoid confusion (#594) * Update run.sh for from descriptive log Updated log file to say that the new versions was installed ONLY to this add-on to stop people from fearing that it installed a new version to their production machine. * Update log message --- check_config/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/check_config/run.sh b/check_config/run.sh index 8020294..2e599a0 100755 --- a/check_config/run.sh +++ b/check_config/run.sh @@ -19,7 +19,8 @@ if ! PIP_OUTPUT="$(pip3 install --find-links "${WHEELS_LINKS}" "${CMD}")"; then bashio::exit.nok fi INSTALLED_VERSION="$(pip freeze | grep homeassistant)" -bashio::log.info "Installed Home Assistant ${INSTALLED_VERSION##*=}." +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..."