build: fix up package paths after repo move

git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g'
goimports -w `find . -name \*.go`
This commit is contained in:
Nick Craig-Wood
2019-07-28 18:47:38 +01:00
parent 4ba6532915
commit 57d5de6fba
393 changed files with 1458 additions and 1447 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import (
"os/signal"
"sync"
"github.com/ncw/rclone/fs"
"github.com/rclone/rclone/fs"
)
var (
+1 -1
View File
@@ -9,8 +9,8 @@ import (
"strings"
"sync"
"github.com/ncw/rclone/fs"
"github.com/pkg/errors"
"github.com/rclone/rclone/fs"
)
// DirCache caches paths to directory IDs and vice versa
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"strconv"
"strings"
"github.com/ncw/rclone/lib/encoder"
"github.com/rclone/rclone/lib/encoder"
)
const (
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/ncw/rclone/lib/errors"
"github.com/rclone/rclone/lib/errors"
)
func TestWalk(t *testing.T) {
+4 -4
View File
@@ -13,11 +13,11 @@ import (
"sync"
"time"
"github.com/ncw/rclone/fs"
"github.com/ncw/rclone/fs/config"
"github.com/ncw/rclone/fs/config/configmap"
"github.com/ncw/rclone/fs/fshttp"
"github.com/pkg/errors"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/config"
"github.com/rclone/rclone/fs/config/configmap"
"github.com/rclone/rclone/fs/fshttp"
"github.com/skratchdot/open-golang/open"
"golang.org/x/oauth2"
)
+1 -1
View File
@@ -3,7 +3,7 @@ package oauthutil
import (
"sync/atomic"
"github.com/ncw/rclone/fs"
"github.com/rclone/rclone/fs"
)
// Renew allows tokens to be renewed on expiry if uploads are in progress.
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"sync"
"time"
"github.com/ncw/rclone/lib/errors"
"github.com/rclone/rclone/lib/errors"
)
// State represents the public Pacer state that will be passed to the
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"sync"
"time"
"github.com/ncw/rclone/lib/mmap"
"github.com/rclone/rclone/lib/mmap"
)
// Pool of internal buffers
+1 -1
View File
@@ -14,8 +14,8 @@ import (
"net/url"
"sync"
"github.com/ncw/rclone/fs"
"github.com/pkg/errors"
"github.com/rclone/rclone/fs"
)
// Client contains the info to sustain the API