The doc said that simply listing the directories should produces one snapshot per row:
repositories:
- url: ./backup
sources:
- "a"
- "b"
encryption:
passphrase: "secret"
The result is:
ID Date Host Label Source Files Size
31f94f1f 2026-05-10 17:06 MyHost default a 2 74 B
b
When I fix the config with:
repositories:
- url: ./backup
sources:
- path: "a"
- path: "b"
encryption:
passphrase: "secret"
Then I've got the expected result:
ID Date Host Label Source Files Size
706b9931 2026-05-10 17:10 MyHost a a 1 37 B
447c7e1d 2026-05-10 17:10 MyHost b b 1 37 B
The doc said that simply listing the directories should produces one snapshot per row:
The result is:
When I fix the config with:
Then I've got the expected result: