mirror of
https://github.com/esphome/esphome.git
synced 2024-11-07 09:31:10 +01:00
Migrate dashboard json files to /data folder instead of wiping out (#5441)
This commit is contained in:
parent
dae8ab563c
commit
b5b654e054
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user