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 committed 2019-07-28 18:47:38 +01:00
1 parent 4ba6532915
commit 57d5de6fba
393 files changed
+1458 -1447

No files matched your search

+3 -3
View File
@@ -6,10 +6,10 @@ import (
"fmt"
"os"
"github.com/ncw/rclone/cmd"
"github.com/ncw/rclone/cmd/ls/lshelp"
"github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
"github.com/rclone/rclone/cmd"
"github.com/rclone/rclone/cmd/ls/lshelp"
"github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)