I created a duplicacy repo using the name foo/bar (e.g. duplicacy init -encrypt foo/bar <redacted_url>). I was able to backup successfully. But after backing up, I wanted to verify the backup, so I ran duplicacy check. That resulted in the following errors:
$ duplicacy check
Storage set to <redacted_url>
Listing all chunks
Failed to create the snapshot cache directory snapshots/foo/bar/: mkdir /<redacted_path>/.duplicacy/cache/default/snapshots/foo/bar: no such file or directory
Failed to add the file snapshots/foo/bar/1 to the snapshot cache: open /<redacted_path>/.duplicacy/cache/default/snapshots/foo/bar/1.nqhldvpf.tmp: no such file or directory
All chunks referenced by snapshot foo/bar at revision 1 exist
I think duplicacy should solve this by doing one of the three possible solutions I've thought of:
I created a duplicacy repo using the name
foo/bar
(e.g.duplicacy init -encrypt foo/bar <redacted_url>
). I was able to backup successfully. But after backing up, I wanted to verify the backup, so I randuplicacy check
. That resulted in the following errors:I think duplicacy should solve this by doing one of the three possible solutions I've thought of:
mkdir -p
(this only works around the/
problem; other characters might be a problem).