1
0

Upgrade base image to 2.0.0 - Uses Python 3

This commit is contained in:
Otto Winter
2019-10-19 15:05:41 +02:00
Unverified
parent eb864eb492
commit 99dff4cf3f
4 changed files with 8 additions and 8 deletions

View File

@@ -10,6 +10,6 @@ if bashio::config.has_value 'esphome_version'; then
esphome_version=$(bashio::config 'esphome_version')
full_url="https://github.com/esphome/esphome/archive/${esphome_version}.zip"
bashio::log.info "Installing esphome version '${esphome_version}' (${full_url})..."
pip2 install -U --no-cache-dir "${full_url}" \
pip3 install -U --no-cache-dir "${full_url}" \
|| bashio::exit.nok "Failed installing esphome pinned version."
fi