I am using the CLI to restore, and my restore target folder gets an empty .duplicacy directory, how can I prevent this?
This is my steps:
- [Download CLI](https://github.com/gilbertchen/duplicacy/releases).
- `wget -O duplicacy https://github.com/gilbertchen/duplicacy/releases/download/v3.2.3/duplicacy_linux_x64_3.2.3`
- `chmod +x duplicacy`
- `mv ./duplicacy /usr/local/bin/`
- [Init](https://github.com/gilbertchen/duplicacy/wiki/init)
- `mkdir ./backup`
- `duplicacy init -encrypt -storage-name B2-Backup -repository ./backup B2-Backup-Backup b2://ptr727-Duplicacy-Server-1-Backup`
- [Set](https://github.com/gilbertchen/duplicacy/wiki/set) [Passwords](https://github.com/gilbertchen/duplicacy/wiki/Managing-Passwords).
- `duplicacy set -key b2_id -value [id]`
- `duplicacy set -key b2_key -value [key]`
- `duplicacy set -key password -value [password]`
- [List](https://github.com/gilbertchen/duplicacy/wiki/list):
- `duplicacy list -all`
- `duplicacy list -files -r [revision]`
- `duplicacy cat -r [revision] ["file"]`
- [Restore](https://github.com/gilbertchen/duplicacy/wiki/restore):
- `duplicacy restore -r [revision] -delete -overwrite -ignore-owner -stats ["pattern"]`
Any ideas?