Don't Mkdir at the start of sync - fixes #1131

This is possible now that the bucket based remotes will create the
buckets on demand (9c1e703777).
This commit is contained in:
Nick Craig-Wood 2017-06-28 19:53:07 +01:00
parent e54087ece1
commit f88300a153

View File

@ -655,12 +655,6 @@ func (s *syncCopyMove) run() error {
return nil
}
// Make the destination directory
err := Mkdir(s.fdst, s.dir)
if err != nil {
return err
}
// Start background checking and transferring pipeline
s.startCheckers()
s.startRenamers()