From 06423b8c50c8567d19115a79abb8cbb9f770642d Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Mon, 21 Aug 2023 01:17:33 +0200 Subject: [PATCH] Fix: Duplicity v2.x needs command specified (inc for backup) Signed-off-by: Knut Ahlers --- configfile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configfile.go b/configfile.go index 7d99313..ef205f0 100644 --- a/configfile.go +++ b/configfile.go @@ -182,7 +182,7 @@ func (c *configFile) GenerateCommand(argv []string, time string) (commandLine [] switch command { case commandBackup: - option = "" + option = "inc" root = c.RootPath dest = c.Destination commandLine, env, err = c.generateFullCommand(option, time, root, dest, addTime, "")