mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-01 03:05:49 +01:00
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 * ✏️ Tweak * Update config.json * ✏️ Markdown tweak
This commit is contained in:
committed by
Franck Nijhof
parent
c43230d7f5
commit
476c498d51
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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..."
|
||||
|
||||
Reference in New Issue
Block a user