mirror of
https://github.com/Luzifer/duplicity-backup.git
synced 2024-11-09 15:40:06 +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:
parent
fe558f1525
commit
06423b8c50
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ func (c *configFile) GenerateCommand(argv []string, time string) (commandLine []
|
||||||
|
|
||||||
switch command {
|
switch command {
|
||||||
case commandBackup:
|
case commandBackup:
|
||||||
option = ""
|
option = "inc"
|
||||||
root = c.RootPath
|
root = c.RootPath
|
||||||
dest = c.Destination
|
dest = c.Destination
|
||||||
commandLine, env, err = c.generateFullCommand(option, time, root, dest, addTime, "")
|
commandLine, env, err = c.generateFullCommand(option, time, root, dest, addTime, "")
|
||||||
|
|
Loading…
Reference in a new issue