Remove verbose flag from tar command

This commit is contained in:
Jesse Hills 2021-11-09 15:48:23 +13:00
parent a09e06aa8d
commit 612bd10503
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ if bashio::config.has_value 'esphome_fork'; then
|| bashio::exit.nok "Failed downloading ESPHome fork."
bashio::log.info "Installing ESPHome from fork '${esphome_fork}' (${full_url})..."
mkdir /esphome-fork
tar -zxvf /tmp/esphome.tar.gz -C /esphome-fork --strip-components=1 \
tar -zxf /tmp/esphome.tar.gz -C /esphome-fork --strip-components=1 \
|| bashio::exit.nok "Failed installing ESPHome from fork."
pip install -U -e /esphome-fork || bashio::exit.nok "Failed installing ESPHome from fork."
rm -f /tmp/esphome.tar.gz