mirror of
https://github.com/rclone/rclone.git
synced 2025-01-11 08:49:37 +01:00
local: Downgrade "invalid cross-device link: trying copy" to debug - Fixes #1875
This commit is contained in:
parent
77f344a69d
commit
fdebf9da31
@ -491,7 +491,7 @@ func (f *Fs) Move(src fs.Object, remote string) (fs.Object, error) {
|
|||||||
} else if err != nil {
|
} else if err != nil {
|
||||||
// not quite clear, but probably trying to move a file across file system
|
// not quite clear, but probably trying to move a file across file system
|
||||||
// boundaries. Copying might still work.
|
// boundaries. Copying might still work.
|
||||||
fs.Errorf(src, "Can't move: %v: trying copy", err)
|
fs.Debugf(src, "Can't move: %v: trying copy", err)
|
||||||
return nil, fs.ErrorCantMove
|
return nil, fs.ErrorCantMove
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -545,7 +545,7 @@ func (f *Fs) DirMove(src fs.Fs, srcRemote, dstRemote string) error {
|
|||||||
} else if err != nil {
|
} else if err != nil {
|
||||||
// not quite clear, but probably trying to move directory across file system
|
// not quite clear, but probably trying to move directory across file system
|
||||||
// boundaries. Copying might still work.
|
// boundaries. Copying might still work.
|
||||||
fs.Errorf(src, "Can't move dir: %v: trying copy", err)
|
fs.Debugf(src, "Can't move dir: %v: trying copy", err)
|
||||||
return fs.ErrorCantDirMove
|
return fs.ErrorCantDirMove
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
Loading…
Reference in New Issue
Block a user