Browse Source

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

tags/v1.11.0-rc2
Lunny Xiao 6 years ago committed by GitHub
parent
commit
f766719895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cmd/dump.go

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 {
fatal("Failed to include log: %v", err)
}
}
if err = z.Close(); err != nil {
_ = os.Remove(fileName)

Loading…
Cancel
Save