Migrate dashboard json files to /data folder instead of wiping out (#5441)

This commit is contained in:
Jesse Hills 2023-09-28 11:40:36 +13:00
parent dae8ab563c
commit b5b654e054
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -42,7 +42,12 @@ fi
mkdir -p "${pio_cache_base}"
if bashio::fs.directory_exists '/config/esphome/.esphome'; then
bashio::log.info "Removing old .esphome directory..."
bashio::log.info "Migrating old .esphome directory..."
if bashio::fs.file_exists '/config/esphome/.esphome/esphome.json'; then
mv /config/esphome/.esphome/esphome.json /data/esphome.json
fi
mkdir -p "/data/storage"
mv /config/esphome/.esphome/*.json /data/storage/ || true
rm -rf /config/esphome/.esphome
fi