1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

Correct parameter order for copy/sync etc

This commit is contained in:
Nick Craig-Wood
2016-08-06 00:07:36 +01:00
parent 0805ec051f
commit ae6018355c

View File

@@ -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