forked from TrueCloudLab/rclone
Correct parameter order for copy/sync etc
This commit is contained in:
parent
0805ec051f
commit
ae6018355c
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ func newFsDst(remote string) fs.Fs {
|
||||||
func NewFsSrcDst(args []string) (fs.Fs, fs.Fs) {
|
func NewFsSrcDst(args []string) (fs.Fs, fs.Fs) {
|
||||||
fsrc, fdst := newFsSrc(args[0]), newFsDst(args[1])
|
fsrc, fdst := newFsSrc(args[0]), newFsDst(args[1])
|
||||||
fs.CalculateModifyWindow(fdst, fsrc)
|
fs.CalculateModifyWindow(fdst, fsrc)
|
||||||
return fdst, fsrc
|
return fsrc, fdst
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewFsSrc creates a new src fs from the arguments
|
// NewFsSrc creates a new src fs from the arguments
|
||||||
|
|
Loading…
Reference in a new issue