summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmd/dump.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/dump.go b/cmd/dump.go
index 6cbf04c468..d4461bea93 100644
--- a/cmd/dump.go
+++ b/cmd/dump.go
@@ -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 {