backend/rclone: Stop rclone in case of errors

This commit is contained in:
Alexander Neumann 2018-03-14 22:28:12 +01:00
parent 6d9a029e09
commit 99b62c11b8
1 changed files with 1 additions and 0 deletions

View File

@ -221,6 +221,7 @@ func Create(cfg Config) (*Backend, error) {
restBackend, err := rest.Create(restConfig, be.tr)
if err != nil {
_ = be.Close()
return nil, err
}