7344366ce8
The underlying issue was fixed in pkg/sftp 1.13.2
11 lines
162 B
Go
11 lines
162 B
Go
package vfs
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
func isCrossDeviceError(err error) bool {
|
|
return errors.Is(err, windows.ERROR_NOT_SAME_DEVICE)
|
|
}
|