mirror of
https://github.com/rclone/rclone.git
synced 2025-07-01 04:50:12 +02:00
ftp: hard fork github.com/jlaffaye/ftp to fix go get
Having a replace directive in go.mod causes "go get github.com/rclone/rclone" to fail as it discussed in this Go issue: https://github.com/golang/go/issues/44840 This is apparently how the Go team want go.mod to work, so this commit hard forks github.com/jlaffaye/ftp into github.com/rclone/ftp so we can remove the `replace` directive from the go.mod file. Fixes #5810
This commit is contained in:
@ -15,7 +15,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/jlaffaye/ftp"
|
||||
"github.com/rclone/ftp"
|
||||
"github.com/rclone/rclone/fs"
|
||||
"github.com/rclone/rclone/fs/accounting"
|
||||
"github.com/rclone/rclone/fs/config"
|
||||
|
Reference in New Issue
Block a user