mirror of
https://github.com/rclone/rclone.git
synced 2025-07-13 18:56:34 +02:00
Correct parameter order for copy/sync etc
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user