From ed4a73ffd7b52017a9f6f2451676597183a46e96 Mon Sep 17 00:00:00 2001 From: Umputun Date: Sun, 4 Mar 2018 02:39:35 -0600 Subject: [PATCH] fix pointer to exporter --- app/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.go b/app/main.go index 6cfa2ab3..3e91c06b 100644 --- a/app/main.go +++ b/app/main.go @@ -136,7 +136,7 @@ func main() { func activateBackup(exporter migrator.Exporter) { for _, siteID := range opts.Sites { backup := migrator.AutoBackup{ - Exporter: &exporter, + Exporter: exporter, BackupLocation: opts.BackupLocation, SiteID: siteID, KeepMax: opts.MaxBackupFiles,