0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-05-29 00:35:36 +02:00

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

View file

@ -151,8 +151,10 @@ func runDump(ctx *cli.Context) error {
}
}
if err := z.AddDir("log", setting.LogRootPath); err != nil {
fatal("Failed to include log: %v", err)
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 {