2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00

init: use Create method for rclone backend

This properly issues the initial repository creation command

Fixes #1896
This commit is contained in:
Michael Eischer 2020-04-10 12:11:06 +02:00
parent 429f97b887
commit 9333f707fa

View File

@ -742,7 +742,7 @@ func create(s string, opts options.Options) (restic.Backend, error) {
case "rest":
return rest.Create(cfg.(rest.Config), rt)
case "rclone":
return rclone.Open(cfg.(rclone.Config), nil)
return rclone.Create(cfg.(rclone.Config))
}
debug.Log("invalid repository scheme: %v", s)