fix dump non-exist log directory (#9818)

This commit is contained in:
Lunny Xiao 2020-01-17 10:56:51 +08:00 committed by techknowlogick
parent cc2916dc5a
commit 9f40bb020e
1 changed files with 4 additions and 2 deletions

View File

@ -151,9 +151,11 @@ func runDump(ctx *cli.Context) error {
} }
} }
if com.IsExist(setting.LogRootPath) {
if err := z.AddDir("log", setting.LogRootPath); err != nil { if err := z.AddDir("log", setting.LogRootPath); err != nil {
fatal("Failed to include log: %v", err) fatal("Failed to include log: %v", err)
} }
}
if err = z.Close(); err != nil { if err = z.Close(); err != nil {
_ = os.Remove(fileName) _ = os.Remove(fileName)