diff --git a/cmd/cmd.go b/cmd/cmd.go index 0bc8fa775..0e23d2373 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -135,7 +135,7 @@ func newFsDst(remote string) fs.Fs { func NewFsSrcDst(args []string) (fs.Fs, fs.Fs) { fsrc, fdst := newFsSrc(args[0]), newFsDst(args[1]) fs.CalculateModifyWindow(fdst, fsrc) - return fdst, fsrc + return fsrc, fdst } // NewFsSrc creates a new src fs from the arguments