mirror of
https://github.com/rclone/rclone.git
synced 2025-01-25 15:49:33 +01:00
Correct parameter order for copy/sync etc
This commit is contained in:
parent
0805ec051f
commit
ae6018355c
@ -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 New Issue
Block a user