fix dump non-exist log directory (#9818) (#9819)

pull/9830/head
Lunny Xiao 5 years ago committed by GitHub
parent e2ddc42377
commit f766719895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cmd/dump.go

@ -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)

Loading…
Cancel
Save