1
0
mirror of https://github.com/zu1k/nali.git synced 2025-01-22 13:19:02 +08:00

fix: migration move db to data dir

Signed-off-by: zu1k <i@zu1k.com>
This commit is contained in:
zu1k 2022-10-06 13:09:41 +08:00
parent 5039161a5c
commit 0631804e00
No known key found for this signature in database
GPG Key ID: AE381A8FB1EF2CC8

View File

@ -17,6 +17,7 @@ func migration2v6() {
_, err = os.Stat(oldDefaultWorkPath)
if err == nil {
println("Old data directories are detected and will attempt to migrate automatically")
oldDefaultConfigPath := filepath.Join(oldDefaultWorkPath, "config.yaml")
stat, err := os.Stat(oldDefaultConfigPath)
if err == nil {
@ -24,14 +25,16 @@ func migration2v6() {
_ = os.Rename(oldDefaultConfigPath, filepath.Join(constant.ConfigDirPath, "config.yaml"))
}
}
files, err := os.ReadDir(oldDefaultWorkPath)
if err == nil {
for _, file := range files {
if file.Type().IsRegular() {
_ = os.Rename(filepath.Join(oldDefaultWorkPath, file.Name()), filepath.Join(constant.ConfigDirPath, file.Name()))
_ = os.Rename(filepath.Join(oldDefaultWorkPath, file.Name()), filepath.Join(constant.DataDirPath, file.Name()))
}
}
}
err = os.RemoveAll(oldDefaultWorkPath)
if err != nil {
log.Errorf("Auto migration failed: %s\n", err)