1
0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-09-19 00:12:55 +00:00

Fix: Duplicity v2.x needs command specified (inc for backup)

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2023-08-21 01:17:33 +02:00
parent fe558f1525
commit 06423b8c50
Signed by: luzifer
GPG Key ID: D91C3E91E4CAD6F5

View File

@ -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, "")