aboutsummaryrefslogtreecommitdiff
path: root/cmd/dump.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/dump.go')
-rw-r--r--cmd/dump.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/dump.go b/cmd/dump.go
index c1361f93..5bc3c639 100644
--- a/cmd/dump.go
+++ b/cmd/dump.go
@@ -87,9 +87,17 @@ func runDump(ctx *cli.Context) error {
} else {
log.Printf("Custom dir %s doesn't exist, skipped", setting.CustomPath)
}
+
if err := z.AddDir("log", setting.LogRootPath); err != nil {
log.Fatalf("Fail to include log: %v", err)
}
+
+ for _, dir := range []string{"attachments", "avatars"} {
+ if err := z.AddDir(path.Join("data", dir), path.Join(setting.AppDataPath, dir)); err != nil {
+ log.Fatalf("Fail to include data/%s: %v", dir, err)
+ }
+ }
+
// FIXME: SSH key file.
if err = z.Close(); err != nil {
os.Remove(fileName)