diff --git a/.circleci/config.yml b/.circleci/config.yml index 15760322e..d95207738 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ jobs: build: machine: true - working_directory: ~/.go_workspace/src/github.com/ncw/rclone + working_directory: ~/.go_workspace/src/github.com/rclone/rclone steps: - checkout diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 98cf1780d..f99fde4eb 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -10,7 +10,7 @@ instead of filing an issue for a quick response. If you are reporting a bug or asking for a new feature then please use one of the templates here: - https://github.com/ncw/rclone/issues/new + https://github.com/rclone/rclone/issues/new otherwise fill in the form below. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 7281582f2..38613fee9 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -22,8 +22,8 @@ Link issues and relevant forum posts here. #### Checklist -- [ ] I have read the [contribution guidelines](https://github.com/ncw/rclone/blob/master/CONTRIBUTING.md#submitting-a-pull-request). +- [ ] I have read the [contribution guidelines](https://github.com/rclone/rclone/blob/master/CONTRIBUTING.md#submitting-a-pull-request). - [ ] I have added tests for all changes in this PR if appropriate. - [ ] I have added documentation for the changes if appropriate. -- [ ] All commit messages are in [house style](https://github.com/ncw/rclone/blob/master/CONTRIBUTING.md#commit-messages). +- [ ] All commit messages are in [house style](https://github.com/rclone/rclone/blob/master/CONTRIBUTING.md#commit-messages). - [ ] I'm done, this Pull Request is ready for review :-) diff --git a/.travis.yml b/.travis.yml index 7e3aa798c..67d1d6ed2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ sudo: required dist: xenial os: - linux -go_import_path: github.com/ncw/rclone +go_import_path: github.com/rclone/rclone before_install: - git fetch --unshallow --tags - | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 551537a87..3b266b7d1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,12 +29,12 @@ You'll need a Go environment set up with GOPATH set. See [the Go getting started docs](https://golang.org/doc/install) for more info. First in your web browser press the fork button on [rclone's GitHub -page](https://github.com/ncw/rclone). +page](https://github.com/rclone/rclone). Now in your terminal - go get -u github.com/ncw/rclone - cd $GOPATH/src/github.com/ncw/rclone + go get -u github.com/rclone/rclone + cd $GOPATH/src/github.com/rclone/rclone git remote rename origin upstream git remote add origin git@github.com:YOURUSER/rclone.git @@ -127,7 +127,7 @@ If you want to use the integration test framework to run these tests all together with an HTML report and test retries then from the project root: - go install github.com/ncw/rclone/fstest/test_all + go install github.com/rclone/rclone/fstest/test_all test_all -backend drive If you want to run all the integration tests against all the remotes, diff --git a/MAINTAINERS.md b/MAINTAINERS.md index ebc97f163..a5345cd9a 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -51,7 +51,7 @@ The milestones have these meanings: * Help wanted - blue sky stuff that might get moved up, or someone could help with * Known bugs - bugs waiting on external factors or we aren't going to fix for the moment -Tickets [with no milestone](https://github.com/ncw/rclone/issues?utf8=✓&q=is%3Aissue%20is%3Aopen%20no%3Amile) are good candidates for ones that have slipped between the gaps and need following up. +Tickets [with no milestone](https://github.com/rclone/rclone/issues?utf8=✓&q=is%3Aissue%20is%3Aopen%20no%3Amile) are good candidates for ones that have slipped between the gaps and need following up. ## Closing Tickets ## diff --git a/MANUAL.html b/MANUAL.html index b1f0b5e99..0cbdfbda5 100644 --- a/MANUAL.html +++ b/MANUAL.html @@ -82,7 +82,7 @@
Links
rclone config
Make sure you have at least Go 1.7 installed. Download go if necessary. The latest release is recommended. Then
-git clone https://github.com/ncw/rclone.git
+git clone https://github.com/rclone/rclone.git
cd rclone
go build
./rclone version
You can also build and install rclone in the GOPATH (which defaults to ~/go
) with:
-go get -u -v github.com/ncw/rclone
-and this will build the binary in $GOPATH/bin
(~/go/bin/rclone
by default) after downloading the source to $GOPATH/src/github.com/ncw/rclone
(~/go/src/github.com/ncw/rclone
by default).
+go get -u -v github.com/rclone/rclone
+and this will build the binary in $GOPATH/bin
(~/go/bin/rclone
by default) after downloading the source to $GOPATH/src/github.com/rclone/rclone
(~/go/src/github.com/rclone/rclone
by default).
Installation with Ansible
This can be done with Stefan Weichinger’s ansible role.
Instructions
@@ -1189,7 +1189,7 @@ umount /path/to/local/mount
You can use the flag –attr-timeout to set the time the kernel caches the attributes (size, modification time etc) for directory entries.
The default is “1s” which caches files just long enough to avoid too many callbacks to rclone from the kernel.
-In theory 0s should be the correct value for filesystems which can change outside the control of the kernel. However this causes quite a few problems such as rclone using too much memory, rclone not serving files to samba and excessive time listing directories.
+In theory 0s should be the correct value for filesystems which can change outside the control of the kernel. However this causes quite a few problems such as rclone using too much memory, rclone not serving files to samba and excessive time listing directories.
The kernel can cache the info about a file for the time given by “–attr-timeout”. You may see corruption if the remote file changes length during this window. It will show up as either a truncated file or a file with garbage on the end. With “–attr-timeout 1s” this is very unlikely but not impossible. The higher you set “–attr-timeout” the more likely it is. The default setting of “1s” is the lowest setting which mitigates the problems above.
If you set it higher (‘10s’ or ‘1m’ say) then the kernel will call back to rclone less often making it more efficient, however there is more chance of the corruption issue above.
If files don’t change on the remote outside of the control of rclone then there is no chance of corruption.
@@ -2183,7 +2183,7 @@ htpasswd -B htpasswd anotherUserIf your names have spaces in you need to put them in "
, eg
rclone copy "E:\folder name\folder name\folder name" remote:backup
-If you are using the root directory on its own then don’t quote it (see #464 for why), eg
+If you are using the root directory on its own then don’t quote it (see #464 for why), eg
rclone copy E:\ remote:backup
:
in the namesrclone uses :
to mark a remote name. This is, however, a valid filename component in non-Windows OSes. The remote name parser will only search for a :
up to the first /
so if you need to act on a file or directory like this then use the full path starting with a /
, or use ./
as a current directory prefix.
Normally rclone will look at modification time and size of files to see if they are equal. If you set this flag then rclone will check only the modification time. If --checksum
is set then it only checks the checksum.
It will also cause rclone to skip verifying the sizes are the same after transfer.
-This can be useful for transferring files to and from OneDrive which occasionally misreports the size of image files (see #399 for more info).
+This can be useful for transferring files to and from OneDrive which occasionally misreports the size of image files (see #399 for more info).
Using this option will cause rclone to unconditionally upload all files regardless of the state of files on the destination.
Normally rclone would skip any files that have the same modification time and are the same size (or have the same checksum if using --checksum
).
$ go tool pprof -text http://localhost:5572/debug/pprof/heap
Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
flat flat% sum% cum cum%
- 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
+ 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
513kB 33.38% 100% 513kB 33.38% net/http.newBufioWriterSize
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/all.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve/restic.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init.0
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/all.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve/restic.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init.0
0 0% 100% 1024.03kB 66.62% main.init
0 0% 100% 513kB 33.38% net/http.(*conn).readRequest
0 0% 100% 513kB 33.38% net/http.(*conn).serve
@@ -3790,10 +3790,10 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
Yes
Yes
-No #575
+No #575
No
No
-No #2178
+No #2178
No
@@ -3805,7 +3805,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
Yes
Yes
-No #2178
+No #2178
No
@@ -3817,7 +3817,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
Yes
Yes
Yes
-No #2178
+No #2178
No
@@ -3826,7 +3826,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
Yes
Yes
Yes
-No #575
+No #575
No
Yes
Yes
@@ -3838,7 +3838,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
Yes
Yes
Yes
-No #575
+No #575
No
Yes
Yes
@@ -3853,7 +3853,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
No
Yes
-No #2178
+No #2178
No
@@ -3865,7 +3865,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
Yes
Yes
-No #2178
+No #2178
No
@@ -3889,7 +3889,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
No
No
-No #2178
+No #2178
No
@@ -3901,7 +3901,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
Yes
Yes
-No #2178
+No #2178
Yes
@@ -3925,7 +3925,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
Yes
No
No
-No #2178
+No #2178
Yes
@@ -3937,7 +3937,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
Yes
No
-No #2178
+No #2178
No
@@ -3946,7 +3946,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
Yes
Yes
Yes
-No #575
+No #575
No
No
Yes
@@ -3973,7 +3973,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
Yes
Yes
-No #2178
+No #2178
Yes
@@ -3985,7 +3985,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
Yes
No
No
-No #2178
+No #2178
Yes
@@ -3997,7 +3997,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
Yes
No
-No #2178
+No #2178
No
@@ -4009,7 +4009,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
No
Yes
-No #2178
+No #2178
Yes
@@ -4021,7 +4021,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
No
No
Yes ‡
-No #2178
+No #2178
Yes
@@ -4666,7 +4666,7 @@ In the case the object is larger than 5Gb or is in Glacier or Glacier Deep Archi
For reference, here’s an Ansible script that will generate one or more buckets that will work with rclone sync
.
Key Management System (KMS)
If you are using server side encryption with KMS then you will find you can’t transfer small objects. As a work-around you can use the --ignore-checksum
flag.
-A proper fix is being worked on in issue #1824.
+A proper fix is being worked on in issue #1824.
Glacier and Glacier Deep Archive
You can upload objects using the glacier storage class or transition them to glacier using a lifecycle policy. The bucket can still be synced or copied into normally, but if rclone tries to access data from the glacier storage class you will see an error like below.
2017/09/11 19:07:43 Failed to sync: failed to open source object: Object in GLACIER, restore first: path/to/file
@@ -6233,7 +6233,7 @@ y/e/d> y
The SHA1 checksums of the files are checked on upload and download and will be used in the syncing process.
Large files (bigger than the limit in --b2-upload-cutoff
) which are uploaded in chunks will store their SHA1 on the object as X-Bz-Info-large_file_sha1
as recommended by Backblaze.
For a large file to be uploaded with an SHA1 checksum, the source needs to support SHA1 checksums. The local disk supports SHA1 checksums so large file transfers from local disk will have an SHA1. See the overview for exactly which remotes support SHA1.
-Sources which don’t support SHA1, in particular crypt
will upload large files without SHA1 checksums. This may be fixed in the future (see #1767).
+Sources which don’t support SHA1, in particular crypt
will upload large files without SHA1 checksums. This may be fixed in the future (see #1767).
Files sizes below --b2-upload-cutoff
will always have an SHA1 regardless of the source.
Transfers
Backblaze recommends that you do lots of transfers simultaneously for maximum speed. In tests from my SSD equipped laptop the optimum setting is about --transfers 32
though higher numbers may be used for a slight speed improvement. The optimum number for you may vary depending on your hardware, how big the files are, how much you want to load your computer, etc. The default of --transfers 4
is definitely too low for Backblaze B2 though.
@@ -6241,7 +6241,7 @@ y/e/d> y
Versions
When rclone uploads a new version of a file it creates a new version of it. Likewise when you delete a file, the old version will be marked hidden and still be available. Conversely, you may opt in to a “hard delete” of files with the --b2-hard-delete
flag which would permanently remove the file instead of hiding it.
Old versions of files, where available, are visible using the --b2-versions
flag.
-NB Note that --b2-versions
does not work with crypt at the moment #1627. Using –backup-dir with rclone is the recommended way of working around this.
+NB Note that --b2-versions
does not work with crypt at the moment #1627. Using –backup-dir with rclone is the recommended way of working around this.
If you wish to remove all the old versions then you can use the rclone cleanup remote:bucket
command which will delete all the old versions of files, leaving the current ones intact. You can also supply a path and only old versions under that path will be deleted, eg rclone cleanup remote:bucket/path/to/stuff
.
Note that cleanup
will remove partially uploaded files from the bucket if they are more than a day old.
When you purge
a bucket, the current and the old versions will be deleted then the bucket will be deleted.
@@ -6276,7 +6276,7 @@ $ rclone -q --b2-versions ls b2:cleanup-test
/b2api/v1/b2_create_bucket
/b2api/v1/b2_list_buckets
/b2api/v1/b2_list_file_names
-The b2_list_file_names
request will be sent once for every 1k files in the remote path, providing the checksum and modification time of the listed files. As of version 1.33 issue #818 causes extra requests to be sent when using B2 with Crypt. When a copy operation does not require any files to be uploaded, no more requests will be sent.
+The b2_list_file_names
request will be sent once for every 1k files in the remote path, providing the checksum and modification time of the listed files. As of version 1.33 issue #818 causes extra requests to be sent when using B2 with Crypt. When a copy operation does not require any files to be uploaded, no more requests will be sent.
Uploading files that do not require chunking, will send 2 requests per file upload:
/b2api/v1/b2_get_upload_url
/b2api/v1/b2_upload_file/
@@ -6731,9 +6731,9 @@ chunk_total_size = 10G
Most of the issues seem to be related to the difference between filesystems on Linux flavors and Windows as cache is heavily dependant on them.
Any reports or feedback on how cache behaves on this OS is greatly appreciated.
-- https://github.com/ncw/rclone/issues/1935
-- https://github.com/ncw/rclone/issues/1907
-- https://github.com/ncw/rclone/issues/1834
+- https://github.com/rclone/rclone/issues/1935
+- https://github.com/rclone/rclone/issues/1907
+- https://github.com/rclone/rclone/issues/1834
Risk of throttling
Future iterations of the cache backend will make use of the pooling functionality of the cloud provider to synchronize and at the same time make writing through it more tolerant to failures.
@@ -6741,8 +6741,8 @@ chunk_total_size = 10G
Some recommendations: - don’t use a very small interval for entry informations (--cache-info-age
) - while writes aren’t yet optimised, you can still write through cache
which gives you the advantage of adding the file in the cache at the same time if configured to do so.
Future enhancements:
-- https://github.com/ncw/rclone/issues/1937
-- https://github.com/ncw/rclone/issues/1936
+- https://github.com/rclone/rclone/issues/1937
+- https://github.com/rclone/rclone/issues/1936
cache and crypt
One common scenario is to keep your data encrypted in the cloud provider using the crypt
remote. crypt
uses a similar technique to wrap around an existing remote and handles this translation in a seamless way.
@@ -8661,7 +8661,7 @@ trashed=false and 'c' in parents
–drive-alternate-export
Use alternate export URLs for google documents export.,
If this option is set this instructs rclone to use an alternate set of export URLs for drive documents. Users have reported that the official export URLs can’t export large documents, whereas these unofficial ones can.
-See rclone issue #2243 for background, this google drive issue and this helpful post.
+See rclone issue #2243 for background, this google drive issue and this helpful post.
- Config: alternate_export
- Env Var: RCLONE_DRIVE_ALTERNATE_EXPORT
@@ -9780,7 +9780,7 @@ y/e/d> y
There are quite a few characters that can’t be in OneDrive file names. These can’t occur on Windows platforms, but on non-Windows platforms they are common. Rclone will map these names to and from an identical looking unicode equivalent. For example if a file has a ?
in it will be mapped to ?
instead.
The largest allowed file sizes are 15GB for OneDrive for Business and 35GB for OneDrive Personal (Updated 4 Jan 2019).
The entire path, including the file name, must contain fewer than 400 characters for OneDrive, OneDrive for Business and SharePoint Online. If you are encrypting file and folder names with rclone, you may want to pay attention to this limitation because the encrypted names are typically longer than the original ones.
-OneDrive seems to be OK with at least 50,000 files in a folder, but at 100,000 rclone will get errors listing the directory like couldn’t list files: UnknownError:
. See #2707 for more info.
+OneDrive seems to be OK with at least 50,000 files in a folder, but at 100,000 rclone will get errors listing the directory like couldn’t list files: UnknownError:
. See #2707 for more info.
An official document about the limitations for different types of OneDrive can be found here.
Versioning issue
Every change in OneDrive causes the service to create a new version. This counts against a users quota. For example changing the modification time of a file creates a second version, so the file is using twice the space.
@@ -11214,7 +11214,7 @@ pass = encryptedpassword
If you are using put.io
with rclone mount
then use the --read-only
flag to signal to the OS that it can’t write to the mount.
For more help see the put.io webdav docs.
Sharepoint
-Rclone can be used with Sharepoint provided by OneDrive for Business or Office365 Education Accounts. This feature is only needed for a few of these Accounts, mostly Office365 Education ones. These accounts are sometimes not verified by the domain owner github#1975
+Rclone can be used with Sharepoint provided by OneDrive for Business or Office365 Education Accounts. This feature is only needed for a few of these Accounts, mostly Office365 Education ones. These accounts are sometimes not verified by the domain owner github#1975
This means that these accounts can’t be added using the official API (other Accounts should work with the “onedrive” option). However, it is possible to access them using webdav.
To use a sharepoint remote with rclone, add it like this: First, you need to get your remote’s URL:
@@ -11373,7 +11373,7 @@ y/e/d> y
Long paths on Windows
Rclone handles long paths automatically, by converting all paths to long UNC paths which allows paths up to 32,767 characters.
This is why you will see that your paths, for instance c:\files
is converted to the UNC path \\?\c:\files
in the output, and \\server\share
is converted to \\?\UNC\server\share
.
-However, in rare cases this may cause problems with buggy file system drivers like EncFS. To disable UNC conversion globally, add this to your .rclone.conf
file:
+However, in rare cases this may cause problems with buggy file system drivers like EncFS. To disable UNC conversion globally, add this to your .rclone.conf
file:
[local]
nounc = true
If you want to selectively disable UNC, you can add it to a separate entry like this:
@@ -11521,7 +11521,7 @@ $ tree /tmp/b
–local-no-check-updated
Don’t check to see if the files change during upload
Normally rclone checks the size and modification time of files as they are being uploaded and aborts with a message which starts “can’t copy - source file is being updated” if the file changes during upload.
-However on some file systems this modification time check may fail (eg Glusterfs #2206) so this check can be disabled with this flag.
+However on some file systems this modification time check may fail (eg Glusterfs #2206) so this check can be disabled with this flag.
- Config: no_check_updated
- Env Var: RCLONE_LOCAL_NO_CHECK_UPDATED
@@ -14292,7 +14292,7 @@ $ tree /tmp/b
With remotes that have a concept of directory, eg Local and Drive, empty directories may be left behind, or not created when one was expected.
This is because rclone doesn’t have a concept of a directory - it only works on objects. Most of the object storage systems can’t actually store a directory so there is nowhere for rclone to store anything about directories.
You can work round this to some extent with thepurge
command which will delete everything under the path, inluding empty directories.
-This may be fixed at some point in Issue #100
+This may be fixed at some point in Issue #100
Directory timestamps aren’t preserved
For the same reason as the above, rclone doesn’t have a concept of a directory - it only works on objects, therefore it can’t preserve the timestamps of directories.
Frequently Asked Questions
@@ -14659,7 +14659,7 @@ THE SOFTWARE.
Gitub project
The project website is at:
-- https://github.com/ncw/rclone
+- https://github.com/rclone/rclone
There you can file bug reports or contribute pull requests.
Twitter
diff --git a/MANUAL.md b/MANUAL.md
index e572de5bb..824bb5a6a 100644
--- a/MANUAL.md
+++ b/MANUAL.md
@@ -68,7 +68,7 @@ Features
Links
* [Home page](https://rclone.org/)
- * [GitHub project page for source and bug tracker](https://github.com/ncw/rclone)
+ * [GitHub project page for source and bug tracker](https://github.com/rclone/rclone)
* [Rclone Forum](https://forum.rclone.org)
* [Downloads](https://rclone.org/downloads/)
@@ -155,7 +155,7 @@ Make sure you have at least [Go](https://golang.org/) 1.7
installed. [Download go](https://golang.org/dl/) if necessary. The
latest release is recommended. Then
- git clone https://github.com/ncw/rclone.git
+ git clone https://github.com/rclone/rclone.git
cd rclone
go build
./rclone version
@@ -164,11 +164,11 @@ You can also build and install rclone in the
[GOPATH](https://github.com/golang/go/wiki/GOPATH) (which defaults to
`~/go`) with:
- go get -u -v github.com/ncw/rclone
+ go get -u -v github.com/rclone/rclone
and this will build the binary in `$GOPATH/bin` (`~/go/bin/rclone` by
default) after downloading the source to
-`$GOPATH/src/github.com/ncw/rclone` (`~/go/src/github.com/ncw/rclone`
+`$GOPATH/src/github.com/rclone/rclone` (`~/go/src/github.com/rclone/rclone`
by default).
## Installation with Ansible ##
@@ -2323,9 +2323,9 @@ too many callbacks to rclone from the kernel.
In theory 0s should be the correct value for filesystems which can
change outside the control of the kernel. However this causes quite a
few problems such as
-[rclone using too much memory](https://github.com/ncw/rclone/issues/2157),
+[rclone using too much memory](https://github.com/rclone/rclone/issues/2157),
[rclone not serving files to samba](https://forum.rclone.org/t/rclone-1-39-vs-1-40-mount-issue/5112)
-and [excessive time listing directories](https://github.com/ncw/rclone/issues/2095#issuecomment-371141147).
+and [excessive time listing directories](https://github.com/rclone/rclone/issues/2095#issuecomment-371141147).
The kernel can cache the info about a file for the time given by
"--attr-timeout". You may see corruption if the remote file changes
@@ -4431,7 +4431,7 @@ If your names have spaces in you need to put them in `"`, eg
rclone copy "E:\folder name\folder name\folder name" remote:backup
If you are using the root directory on its own then don't quote it
-(see [#464](https://github.com/ncw/rclone/issues/464) for why), eg
+(see [#464](https://github.com/rclone/rclone/issues/464) for why), eg
rclone copy E:\ remote:backup
@@ -4750,7 +4750,7 @@ after transfer.
This can be useful for transferring files to and from OneDrive which
occasionally misreports the size of image files (see
-[#399](https://github.com/ncw/rclone/issues/399) for more info).
+[#399](https://github.com/rclone/rclone/issues/399) for more info).
### -I, --ignore-times ###
@@ -7239,14 +7239,14 @@ You can also use the `-text` flag to produce a textual summary
$ go tool pprof -text http://localhost:5572/debug/pprof/heap
Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
flat flat% sum% cum cum%
- 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
+ 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
513kB 33.38% 100% 513kB 33.38% net/http.newBufioWriterSize
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/all.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve/restic.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init.0
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/all.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve/restic.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init.0
0 0% 100% 1024.03kB 66.62% main.init
0 0% 100% 513kB 33.38% net/http.(*conn).readRequest
0 0% 100% 513kB 33.38% net/http.(*conn).serve
@@ -7407,26 +7407,26 @@ operations more efficient.
| Name | Purge | Copy | Move | DirMove | CleanUp | ListR | StreamUpload | LinkSharing | About |
| ---------------------------- |:-----:|:----:|:----:|:-------:|:-------:|:-----:|:------------:|:------------:|:-----:|
-| Amazon Drive | Yes | No | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Amazon S3 | No | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Backblaze B2 | No | Yes | No | No | Yes | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Box | Yes | Yes | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | Yes | Yes | No |
-| Dropbox | Yes | Yes | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | Yes | Yes | Yes |
-| FTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Google Cloud Storage | Yes | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
+| Amazon Drive | Yes | No | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Amazon S3 | No | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Backblaze B2 | No | Yes | No | No | Yes | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Box | Yes | Yes | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | Yes | Yes | No |
+| Dropbox | Yes | Yes | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | Yes | Yes | Yes |
+| FTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Google Cloud Storage | Yes | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
| Google Drive | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
-| HTTP | No | No | No | No | No | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Hubic | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
+| HTTP | No | No | No | No | No | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Hubic | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
| Jottacloud | Yes | Yes | Yes | Yes | No | Yes | No | Yes | Yes |
-| Mega | Yes | No | Yes | Yes | Yes | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| Microsoft Azure Blob Storage | Yes | Yes | No | No | No | Yes | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Microsoft OneDrive | Yes | Yes | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | No | Yes | Yes |
+| Mega | Yes | No | Yes | Yes | Yes | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| Microsoft Azure Blob Storage | Yes | Yes | No | No | No | Yes | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Microsoft OneDrive | Yes | Yes | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | No | Yes | Yes |
| OpenDrive | Yes | Yes | Yes | Yes | No | No | No | No | No |
-| Openstack Swift | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| pCloud | Yes | Yes | Yes | Yes | Yes | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| QingStor | No | Yes | No | No | No | Yes | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| SFTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| WebDAV | Yes | Yes | Yes | Yes | No | No | Yes ‡ | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
+| Openstack Swift | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| pCloud | Yes | Yes | Yes | Yes | Yes | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| QingStor | No | Yes | No | No | No | Yes | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| SFTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| WebDAV | Yes | Yes | Yes | Yes | No | No | Yes ‡ | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
| Yandex Disk | Yes | Yes | Yes | Yes | Yes | No | Yes | Yes | Yes |
| The local filesystem | Yes | No | Yes | Yes | No | No | Yes | No | Yes |
@@ -8328,7 +8328,7 @@ If you are using server side encryption with KMS then you will find
you can't transfer small objects. As a work-around you can use the
`--ignore-checksum` flag.
-A proper fix is being worked on in [issue #1824](https://github.com/ncw/rclone/issues/1824).
+A proper fix is being worked on in [issue #1824](https://github.com/rclone/rclone/issues/1824).
### Glacier and Glacier Deep Archive ###
@@ -9805,7 +9805,7 @@ support SHA1.
Sources which don't support SHA1, in particular `crypt` will upload
large files without SHA1 checksums. This may be fixed in the future
-(see [#1767](https://github.com/ncw/rclone/issues/1767)).
+(see [#1767](https://github.com/rclone/rclone/issues/1767)).
Files sizes below `--b2-upload-cutoff` will always have an SHA1
regardless of the source.
@@ -9838,7 +9838,7 @@ Old versions of files, where available, are visible using the
`--b2-versions` flag.
**NB** Note that `--b2-versions` does not work with crypt at the
-moment [#1627](https://github.com/ncw/rclone/issues/1627). Using
+moment [#1627](https://github.com/rclone/rclone/issues/1627). Using
[--backup-dir](/docs/#backup-dir-dir) with rclone is the recommended
way of working around this.
@@ -9910,7 +9910,7 @@ All copy commands send the following 4 requests:
The `b2_list_file_names` request will be sent once for every 1k files
in the remote path, providing the checksum and modification time of
the listed files. As of version 1.33 issue
-[#818](https://github.com/ncw/rclone/issues/818) causes extra requests
+[#818](https://github.com/rclone/rclone/issues/818) causes extra requests
to be sent when using B2 with Crypt. When a copy operation does not
require any files to be uploaded, no more requests will be sent.
@@ -10593,9 +10593,9 @@ on Linux flavors and Windows as cache is heavily dependant on them.
Any reports or feedback on how cache behaves on this OS is greatly appreciated.
-- https://github.com/ncw/rclone/issues/1935
-- https://github.com/ncw/rclone/issues/1907
-- https://github.com/ncw/rclone/issues/1834
+- https://github.com/rclone/rclone/issues/1935
+- https://github.com/rclone/rclone/issues/1907
+- https://github.com/rclone/rclone/issues/1834
#### Risk of throttling ####
@@ -10614,8 +10614,8 @@ of adding the file in the cache at the same time if configured to do so.
Future enhancements:
-- https://github.com/ncw/rclone/issues/1937
-- https://github.com/ncw/rclone/issues/1936
+- https://github.com/rclone/rclone/issues/1937
+- https://github.com/rclone/rclone/issues/1936
#### cache and crypt ####
@@ -13041,7 +13041,7 @@ export URLs for drive documents. Users have reported that the
official export URLs can't export large documents, whereas these
unofficial ones can.
-See rclone issue [#2243](https://github.com/ncw/rclone/issues/2243) for background,
+See rclone issue [#2243](https://github.com/rclone/rclone/issues/2243) for background,
[this google drive issue](https://issuetracker.google.com/issues/36761333) and
[this helpful post](https://www.labnol.org/internet/direct-links-for-google-drive/28356/).
@@ -14734,7 +14734,7 @@ The entire path, including the file name, must contain fewer than 400 characters
OneDrive seems to be OK with at least 50,000 files in a folder, but at
100,000 rclone will get errors listing the directory like `couldn’t
list files: UnknownError:`. See
-[#2707](https://github.com/ncw/rclone/issues/2707) for more info.
+[#2707](https://github.com/rclone/rclone/issues/2707) for more info.
An official document about the limitations for different types of OneDrive can be found [here](https://support.office.com/en-us/article/invalid-file-names-and-file-types-in-onedrive-onedrive-for-business-and-sharepoint-64883a5d-228e-48f5-b3d2-eb39e07630fa).
@@ -16604,7 +16604,7 @@ Rclone can be used with Sharepoint provided by OneDrive for Business
or Office365 Education Accounts.
This feature is only needed for a few of these Accounts,
mostly Office365 Education ones. These accounts are sometimes not
-verified by the domain owner [github#1975](https://github.com/ncw/rclone/issues/1975)
+verified by the domain owner [github#1975](https://github.com/rclone/rclone/issues/1975)
This means that these accounts can't be added using the official
API (other Accounts should work with the "onedrive" option). However,
@@ -16887,7 +16887,7 @@ converted to the UNC path `\\?\c:\files` in the output,
and `\\server\share` is converted to `\\?\UNC\server\share`.
However, in rare cases this may cause problems with buggy file
-system drivers like [EncFS](https://github.com/ncw/rclone/issues/261).
+system drivers like [EncFS](https://github.com/rclone/rclone/issues/261).
To disable UNC conversion globally, add this to your `.rclone.conf` file:
```
@@ -17136,7 +17136,7 @@ are being uploaded and aborts with a message which starts "can't copy
- source file is being updated" if the file changes during upload.
However on some file systems this modification time check may fail (eg
-[Glusterfs #2206](https://github.com/ncw/rclone/issues/2206)) so this
+[Glusterfs #2206](https://github.com/rclone/rclone/issues/2206)) so this
check can be disabled with this flag.
- Config: no_check_updated
@@ -19036,7 +19036,7 @@ You can work round this to some extent with the`purge` command which
will delete everything under the path, **inluding** empty directories.
This may be fixed at some point in
-[Issue #100](https://github.com/ncw/rclone/issues/100)
+[Issue #100](https://github.com/rclone/rclone/issues/100)
### Directory timestamps aren't preserved ##
@@ -19553,7 +19553,7 @@ Forum for questions and general discussion:
The project website is at:
- * https://github.com/ncw/rclone
+ * https://github.com/rclone/rclone
There you can file bug reports or contribute pull requests.
diff --git a/MANUAL.txt b/MANUAL.txt
index f66f32efc..bff8f12ea 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -166,7 +166,7 @@ Install from source
Make sure you have at least Go 1.7 installed. Download go if necessary.
The latest release is recommended. Then
- git clone https://github.com/ncw/rclone.git
+ git clone https://github.com/rclone/rclone.git
cd rclone
go build
./rclone version
@@ -174,11 +174,11 @@ The latest release is recommended. Then
You can also build and install rclone in the GOPATH (which defaults to
~/go) with:
- go get -u -v github.com/ncw/rclone
+ go get -u -v github.com/rclone/rclone
and this will build the binary in $GOPATH/bin (~/go/bin/rclone by
default) after downloading the source to
-$GOPATH/src/github.com/ncw/rclone (~/go/src/github.com/ncw/rclone by
+$GOPATH/src/github.com/rclone/rclone (~/go/src/github.com/rclone/rclone by
default).
@@ -6859,14 +6859,14 @@ You can also use the -text flag to produce a textual summary
$ go tool pprof -text http://localhost:5572/debug/pprof/heap
Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
flat flat% sum% cum cum%
- 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
+ 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
513kB 33.38% 100% 513kB 33.38% net/http.newBufioWriterSize
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/all.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve/restic.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init.0
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/all.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve/restic.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init.0
0 0% 100% 1024.03kB 66.62% main.init
0 0% 100% 513kB 33.38% net/http.(*conn).readRequest
0 0% 100% 513kB 33.38% net/http.(*conn).serve
@@ -10186,9 +10186,9 @@ on them.
Any reports or feedback on how cache behaves on this OS is greatly
appreciated.
-- https://github.com/ncw/rclone/issues/1935
-- https://github.com/ncw/rclone/issues/1907
-- https://github.com/ncw/rclone/issues/1834
+- https://github.com/rclone/rclone/issues/1935
+- https://github.com/rclone/rclone/issues/1907
+- https://github.com/rclone/rclone/issues/1834
Risk of throttling
@@ -10208,8 +10208,8 @@ the file in the cache at the same time if configured to do so.
Future enhancements:
-- https://github.com/ncw/rclone/issues/1937
-- https://github.com/ncw/rclone/issues/1936
+- https://github.com/rclone/rclone/issues/1937
+- https://github.com/rclone/rclone/issues/1936
cache and crypt
@@ -19523,7 +19523,7 @@ Gitub project
The project website is at:
-- https://github.com/ncw/rclone
+- https://github.com/rclone/rclone
There you can file bug reports or contribute pull requests.
diff --git a/Makefile b/Makefile
index 871d94f8d..e1d22a53c 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ endif
rclone:
touch fs/version.go
- go install -v --ldflags "-s -X github.com/ncw/rclone/fs.Version=$(TAG)" $(BUILDTAGS)
+ go install -v --ldflags "-s -X github.com/rclone/rclone/fs.Version=$(TAG)" $(BUILDTAGS)
cp -av `go env GOPATH`/bin/rclone .
vars:
@@ -48,7 +48,7 @@ version:
# Full suite of integration tests
test: rclone
- go install --ldflags "-s -X github.com/ncw/rclone/fs.Version=$(TAG)" $(BUILDTAGS) github.com/ncw/rclone/fstest/test_all
+ go install --ldflags "-s -X github.com/rclone/rclone/fs.Version=$(TAG)" $(BUILDTAGS) github.com/rclone/rclone/fstest/test_all
-test_all 2>&1 | tee test_all.log
@echo "Written logs in test_all.log"
diff --git a/README.md b/README.md
index f39d84720..7399afced 100644
--- a/README.md
+++ b/README.md
@@ -11,8 +11,8 @@
[![Build Status](https://travis-ci.org/ncw/rclone.svg?branch=master)](https://travis-ci.org/ncw/rclone)
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/ncw/rclone?branch=master&passingText=windows%20-%20ok&svg=true)](https://ci.appveyor.com/project/ncw/rclone)
[![CircleCI](https://circleci.com/gh/ncw/rclone/tree/master.svg?style=svg)](https://circleci.com/gh/ncw/rclone/tree/master)
-[![Go Report Card](https://goreportcard.com/badge/github.com/ncw/rclone)](https://goreportcard.com/report/github.com/ncw/rclone)
-[![GoDoc](https://godoc.org/github.com/ncw/rclone?status.svg)](https://godoc.org/github.com/ncw/rclone)
+[![Go Report Card](https://goreportcard.com/badge/github.com/rclone/rclone)](https://goreportcard.com/report/github.com/rclone/rclone)
+[![GoDoc](https://godoc.org/github.com/rclone/rclone?status.svg)](https://godoc.org/github.com/rclone/rclone)
# Rclone
diff --git a/backend/alias/alias.go b/backend/alias/alias.go
index 9fceec827..f708ca265 100644
--- a/backend/alias/alias.go
+++ b/backend/alias/alias.go
@@ -4,10 +4,10 @@ import (
"errors"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fspath"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fspath"
)
// Register with Fs
diff --git a/backend/alias/alias_internal_test.go b/backend/alias/alias_internal_test.go
index 309de13f1..857bf1a37 100644
--- a/backend/alias/alias_internal_test.go
+++ b/backend/alias/alias_internal_test.go
@@ -8,9 +8,9 @@ import (
"sort"
"testing"
- _ "github.com/ncw/rclone/backend/local" // pull in test backend
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
+ _ "github.com/rclone/rclone/backend/local" // pull in test backend
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
"github.com/stretchr/testify/require"
)
diff --git a/backend/all/all.go b/backend/all/all.go
index a8386f4f0..4373ac20f 100644
--- a/backend/all/all.go
+++ b/backend/all/all.go
@@ -2,33 +2,33 @@ package all
import (
// Active file systems
- _ "github.com/ncw/rclone/backend/alias"
- _ "github.com/ncw/rclone/backend/amazonclouddrive"
- _ "github.com/ncw/rclone/backend/azureblob"
- _ "github.com/ncw/rclone/backend/b2"
- _ "github.com/ncw/rclone/backend/box"
- _ "github.com/ncw/rclone/backend/cache"
- _ "github.com/ncw/rclone/backend/crypt"
- _ "github.com/ncw/rclone/backend/drive"
- _ "github.com/ncw/rclone/backend/dropbox"
- _ "github.com/ncw/rclone/backend/fichier"
- _ "github.com/ncw/rclone/backend/ftp"
- _ "github.com/ncw/rclone/backend/googlecloudstorage"
- _ "github.com/ncw/rclone/backend/googlephotos"
- _ "github.com/ncw/rclone/backend/http"
- _ "github.com/ncw/rclone/backend/hubic"
- _ "github.com/ncw/rclone/backend/jottacloud"
- _ "github.com/ncw/rclone/backend/koofr"
- _ "github.com/ncw/rclone/backend/local"
- _ "github.com/ncw/rclone/backend/mega"
- _ "github.com/ncw/rclone/backend/onedrive"
- _ "github.com/ncw/rclone/backend/opendrive"
- _ "github.com/ncw/rclone/backend/pcloud"
- _ "github.com/ncw/rclone/backend/qingstor"
- _ "github.com/ncw/rclone/backend/s3"
- _ "github.com/ncw/rclone/backend/sftp"
- _ "github.com/ncw/rclone/backend/swift"
- _ "github.com/ncw/rclone/backend/union"
- _ "github.com/ncw/rclone/backend/webdav"
- _ "github.com/ncw/rclone/backend/yandex"
+ _ "github.com/rclone/rclone/backend/alias"
+ _ "github.com/rclone/rclone/backend/amazonclouddrive"
+ _ "github.com/rclone/rclone/backend/azureblob"
+ _ "github.com/rclone/rclone/backend/b2"
+ _ "github.com/rclone/rclone/backend/box"
+ _ "github.com/rclone/rclone/backend/cache"
+ _ "github.com/rclone/rclone/backend/crypt"
+ _ "github.com/rclone/rclone/backend/drive"
+ _ "github.com/rclone/rclone/backend/dropbox"
+ _ "github.com/rclone/rclone/backend/fichier"
+ _ "github.com/rclone/rclone/backend/ftp"
+ _ "github.com/rclone/rclone/backend/googlecloudstorage"
+ _ "github.com/rclone/rclone/backend/googlephotos"
+ _ "github.com/rclone/rclone/backend/http"
+ _ "github.com/rclone/rclone/backend/hubic"
+ _ "github.com/rclone/rclone/backend/jottacloud"
+ _ "github.com/rclone/rclone/backend/koofr"
+ _ "github.com/rclone/rclone/backend/local"
+ _ "github.com/rclone/rclone/backend/mega"
+ _ "github.com/rclone/rclone/backend/onedrive"
+ _ "github.com/rclone/rclone/backend/opendrive"
+ _ "github.com/rclone/rclone/backend/pcloud"
+ _ "github.com/rclone/rclone/backend/qingstor"
+ _ "github.com/rclone/rclone/backend/s3"
+ _ "github.com/rclone/rclone/backend/sftp"
+ _ "github.com/rclone/rclone/backend/swift"
+ _ "github.com/rclone/rclone/backend/union"
+ _ "github.com/rclone/rclone/backend/webdav"
+ _ "github.com/rclone/rclone/backend/yandex"
)
diff --git a/backend/amazonclouddrive/amazonclouddrive.go b/backend/amazonclouddrive/amazonclouddrive.go
index cbdf3b2f1..06ab15cba 100644
--- a/backend/amazonclouddrive/amazonclouddrive.go
+++ b/backend/amazonclouddrive/amazonclouddrive.go
@@ -23,17 +23,17 @@ import (
"time"
acd "github.com/ncw/go-acd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/dircache"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
"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/config/configstruct"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/dircache"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
"golang.org/x/oauth2"
)
@@ -332,7 +332,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
}
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
- // See https://github.com/ncw/rclone/issues/2182
+ // See https://github.com/rclone/rclone/issues/2182
f.dirCache = tempF.dirCache
f.root = tempF.root
// return an error with an fs which points to the parent
diff --git a/backend/amazonclouddrive/amazonclouddrive_test.go b/backend/amazonclouddrive/amazonclouddrive_test.go
index 6298b930b..5a0eccc7c 100644
--- a/backend/amazonclouddrive/amazonclouddrive_test.go
+++ b/backend/amazonclouddrive/amazonclouddrive_test.go
@@ -7,9 +7,9 @@ package amazonclouddrive_test
import (
"testing"
- "github.com/ncw/rclone/backend/amazonclouddrive"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/amazonclouddrive"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/azureblob/azureblob.go b/backend/azureblob/azureblob.go
index 92c6893ec..f6bcc19cf 100644
--- a/backend/azureblob/azureblob.go
+++ b/backend/azureblob/azureblob.go
@@ -24,16 +24,16 @@ import (
"github.com/Azure/azure-pipeline-go/pipeline"
"github.com/Azure/azure-storage-blob-go/azblob"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/pacer"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/pacer"
)
const (
@@ -1427,7 +1427,7 @@ func (o *Object) Update(ctx context.Context, in io.Reader, src fs.ObjectInfo, op
// FIXME Until https://github.com/Azure/azure-storage-blob-go/pull/75
// is merged the SDK can't upload a single blob of exactly the chunk
// size, so upload with a multpart upload to work around.
- // See: https://github.com/ncw/rclone/issues/2653
+ // See: https://github.com/rclone/rclone/issues/2653
multipartUpload := size >= int64(o.fs.opt.UploadCutoff)
if size == int64(o.fs.opt.ChunkSize) {
multipartUpload = true
diff --git a/backend/azureblob/azureblob_test.go b/backend/azureblob/azureblob_test.go
index 06b45808f..1708d2108 100644
--- a/backend/azureblob/azureblob_test.go
+++ b/backend/azureblob/azureblob_test.go
@@ -7,8 +7,8 @@ package azureblob
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/b2/api/types.go b/backend/b2/api/types.go
index ae1c58858..8bcaeb0cf 100644
--- a/backend/b2/api/types.go
+++ b/backend/b2/api/types.go
@@ -7,7 +7,7 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fserrors"
)
// Error describes a B2 error response
diff --git a/backend/b2/api/types_test.go b/backend/b2/api/types_test.go
index 6131a2b41..c56c3d9cc 100644
--- a/backend/b2/api/types_test.go
+++ b/backend/b2/api/types_test.go
@@ -4,8 +4,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/backend/b2/api"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/backend/b2/api"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/b2/b2.go b/backend/b2/b2.go
index ee9eb5e6b..842635e60 100644
--- a/backend/b2/b2.go
+++ b/backend/b2/b2.go
@@ -20,18 +20,18 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/backend/b2/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/b2/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
)
const (
diff --git a/backend/b2/b2_internal_test.go b/backend/b2/b2_internal_test.go
index f64e83bcb..74072d552 100644
--- a/backend/b2/b2_internal_test.go
+++ b/backend/b2/b2_internal_test.go
@@ -4,7 +4,7 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fstest"
)
// Test b2 string encoding
diff --git a/backend/b2/b2_test.go b/backend/b2/b2_test.go
index 11c49f22d..6437d2adc 100644
--- a/backend/b2/b2_test.go
+++ b/backend/b2/b2_test.go
@@ -4,8 +4,8 @@ package b2
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/b2/upload.go b/backend/b2/upload.go
index a6cdca317..af01f971a 100644
--- a/backend/b2/upload.go
+++ b/backend/b2/upload.go
@@ -15,12 +15,12 @@ import (
"strings"
"sync"
- "github.com/ncw/rclone/backend/b2/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/b2/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/rest"
)
type hashAppendingReader struct {
diff --git a/backend/box/box.go b/backend/box/box.go
index b3f61bea2..1a88fc057 100644
--- a/backend/box/box.go
+++ b/backend/box/box.go
@@ -21,19 +21,19 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/backend/box/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/dircache"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/box/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/dircache"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/oauth2"
)
@@ -305,7 +305,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
f.features.Fill(&tempF)
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
- // See https://github.com/ncw/rclone/issues/2182
+ // See https://github.com/rclone/rclone/issues/2182
f.dirCache = tempF.dirCache
f.root = tempF.root
// return an error with an fs which points to the parent
diff --git a/backend/box/box_test.go b/backend/box/box_test.go
index 8355e7ca6..67e6d4c6a 100644
--- a/backend/box/box_test.go
+++ b/backend/box/box_test.go
@@ -4,8 +4,8 @@ package box_test
import (
"testing"
- "github.com/ncw/rclone/backend/box"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/box"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/box/upload.go b/backend/box/upload.go
index 2a1e8e6a1..6e187635f 100644
--- a/backend/box/upload.go
+++ b/backend/box/upload.go
@@ -14,11 +14,11 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/backend/box/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/box/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/lib/rest"
)
// createUploadSession creates an upload session for the object
@@ -97,7 +97,7 @@ func (o *Object) commitUpload(SessionID string, parts []api.Part, modTime time.T
var body []byte
var resp *http.Response
// For discussion of this value see:
- // https://github.com/ncw/rclone/issues/2054
+ // https://github.com/rclone/rclone/issues/2054
maxTries := o.fs.opt.CommitRetries
const defaultDelay = 10
var tries int
diff --git a/backend/cache/cache.go b/backend/cache/cache.go
index 618532be4..469cc9f73 100644
--- a/backend/cache/cache.go
+++ b/backend/cache/cache.go
@@ -18,19 +18,19 @@ import (
"syscall"
"time"
- "github.com/ncw/rclone/backend/crypt"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fspath"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/rc"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/atexit"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/crypt"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fspath"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/atexit"
"golang.org/x/time/rate"
)
diff --git a/backend/cache/cache_internal_test.go b/backend/cache/cache_internal_test.go
index 5e573d96b..fc455a24e 100644
--- a/backend/cache/cache_internal_test.go
+++ b/backend/cache/cache_internal_test.go
@@ -22,19 +22,19 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/backend/cache"
- "github.com/ncw/rclone/backend/crypt"
- _ "github.com/ncw/rclone/backend/drive"
- "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/object"
- "github.com/ncw/rclone/fs/rc"
- "github.com/ncw/rclone/fstest"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/cache"
+ "github.com/rclone/rclone/backend/crypt"
+ _ "github.com/rclone/rclone/backend/drive"
+ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/object"
+ "github.com/rclone/rclone/fs/rc"
+ "github.com/rclone/rclone/fstest"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/cache/cache_mount_unix_test.go b/backend/cache/cache_mount_unix_test.go
index 2fe7d536c..4f4595859 100644
--- a/backend/cache/cache_mount_unix_test.go
+++ b/backend/cache/cache_mount_unix_test.go
@@ -9,9 +9,9 @@ import (
"bazil.org/fuse"
fusefs "bazil.org/fuse/fs"
- "github.com/ncw/rclone/cmd/mount"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/cmd/mount"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs"
"github.com/stretchr/testify/require"
)
diff --git a/backend/cache/cache_mount_windows_test.go b/backend/cache/cache_mount_windows_test.go
index 44c619a71..d65dd17e8 100644
--- a/backend/cache/cache_mount_windows_test.go
+++ b/backend/cache/cache_mount_windows_test.go
@@ -9,10 +9,10 @@ import (
"time"
"github.com/billziss-gh/cgofuse/fuse"
- "github.com/ncw/rclone/cmd/cmount"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/cmount"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs"
"github.com/stretchr/testify/require"
)
diff --git a/backend/cache/cache_test.go b/backend/cache/cache_test.go
index e0df97bf3..07d3d4745 100644
--- a/backend/cache/cache_test.go
+++ b/backend/cache/cache_test.go
@@ -7,9 +7,9 @@ package cache_test
import (
"testing"
- "github.com/ncw/rclone/backend/cache"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/cache"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/cache/cache_upload_test.go b/backend/cache/cache_upload_test.go
index 47751ef0e..dec5de9bc 100644
--- a/backend/cache/cache_upload_test.go
+++ b/backend/cache/cache_upload_test.go
@@ -12,9 +12,9 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/backend/cache"
- _ "github.com/ncw/rclone/backend/drive"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/backend/cache"
+ _ "github.com/rclone/rclone/backend/drive"
+ "github.com/rclone/rclone/fs"
"github.com/stretchr/testify/require"
)
diff --git a/backend/cache/directory.go b/backend/cache/directory.go
index 66ca15c80..c95377712 100644
--- a/backend/cache/directory.go
+++ b/backend/cache/directory.go
@@ -7,7 +7,7 @@ import (
"path"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// Directory is a generic dir that stores basic information about it
diff --git a/backend/cache/handle.go b/backend/cache/handle.go
index 6391513d9..96e8fd89d 100644
--- a/backend/cache/handle.go
+++ b/backend/cache/handle.go
@@ -12,9 +12,9 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/operations"
)
var uploaderMap = make(map[string]*backgroundWriter)
diff --git a/backend/cache/object.go b/backend/cache/object.go
index fe37b783d..5509991ff 100644
--- a/backend/cache/object.go
+++ b/backend/cache/object.go
@@ -9,10 +9,10 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/readers"
)
const (
diff --git a/backend/cache/plex.go b/backend/cache/plex.go
index 01f3367ed..8b8a2c0b6 100644
--- a/backend/cache/plex.go
+++ b/backend/cache/plex.go
@@ -14,8 +14,8 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
cache "github.com/patrickmn/go-cache"
+ "github.com/rclone/rclone/fs"
"golang.org/x/net/websocket"
)
diff --git a/backend/cache/storage_memory.go b/backend/cache/storage_memory.go
index d88f99596..fb0d9dba7 100644
--- a/backend/cache/storage_memory.go
+++ b/backend/cache/storage_memory.go
@@ -7,9 +7,9 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
cache "github.com/patrickmn/go-cache"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
)
// Memory is a wrapper of transient storage for a go-cache store
diff --git a/backend/cache/storage_persistent.go b/backend/cache/storage_persistent.go
index 9601cc20f..608a386b0 100644
--- a/backend/cache/storage_persistent.go
+++ b/backend/cache/storage_persistent.go
@@ -17,9 +17,9 @@ import (
"time"
bolt "github.com/coreos/bbolt"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/walk"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/walk"
)
// Constants
diff --git a/backend/crypt/cipher.go b/backend/crypt/cipher.go
index b07ee551d..b7b6c05db 100644
--- a/backend/crypt/cipher.go
+++ b/backend/crypt/cipher.go
@@ -14,10 +14,10 @@ import (
"sync"
"unicode/utf8"
- "github.com/ncw/rclone/backend/crypt/pkcs7"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/crypt/pkcs7"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
"github.com/rfjakob/eme"
"golang.org/x/crypto/nacl/secretbox"
"golang.org/x/crypto/scrypt"
diff --git a/backend/crypt/cipher_test.go b/backend/crypt/cipher_test.go
index b7e680d4e..655ff9b92 100644
--- a/backend/crypt/cipher_test.go
+++ b/backend/crypt/cipher_test.go
@@ -10,8 +10,8 @@ import (
"strings"
"testing"
- "github.com/ncw/rclone/backend/crypt/pkcs7"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/crypt/pkcs7"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/crypt/crypt.go b/backend/crypt/crypt.go
index 6fa14e00e..c03392a1d 100644
--- a/backend/crypt/crypt.go
+++ b/backend/crypt/crypt.go
@@ -8,14 +8,14 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fspath"
- "github.com/ncw/rclone/fs/hash"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fspath"
+ "github.com/rclone/rclone/fs/hash"
)
// Globals
diff --git a/backend/crypt/crypt_test.go b/backend/crypt/crypt_test.go
index 72073400d..144c7824f 100644
--- a/backend/crypt/crypt_test.go
+++ b/backend/crypt/crypt_test.go
@@ -6,13 +6,13 @@ import (
"path/filepath"
"testing"
- "github.com/ncw/rclone/backend/crypt"
- _ "github.com/ncw/rclone/backend/drive" // for integration tests
- _ "github.com/ncw/rclone/backend/local"
- _ "github.com/ncw/rclone/backend/swift" // for integration tests
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fstest"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/crypt"
+ _ "github.com/rclone/rclone/backend/drive" // for integration tests
+ _ "github.com/rclone/rclone/backend/local"
+ _ "github.com/rclone/rclone/backend/swift" // for integration tests
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fstest"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/drive/drive.go b/backend/drive/drive.go
index 9a1fed5bd..2b120f64c 100644
--- a/backend/drive/drive.go
+++ b/backend/drive/drive.go
@@ -26,20 +26,20 @@ import (
"text/template"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/dircache"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/readers"
"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/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/dircache"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/readers"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
drive_v2 "google.golang.org/api/drive/v2"
@@ -333,7 +333,7 @@ export URLs for drive documents. Users have reported that the
official export URLs can't export large documents, whereas these
unofficial ones can.
-See rclone issue [#2243](https://github.com/ncw/rclone/issues/2243) for background,
+See rclone issue [#2243](https://github.com/rclone/rclone/issues/2243) for background,
[this google drive issue](https://issuetracker.google.com/issues/36761333) and
[this helpful post](https://www.labnol.org/internet/direct-links-for-google-drive/28356/).`,
Advanced: true,
@@ -1018,7 +1018,7 @@ func NewFs(name, path string, m configmap.Mapper) (fs.Fs, error) {
}
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
- // See https://github.com/ncw/rclone/issues/2182
+ // See https://github.com/rclone/rclone/issues/2182
f.dirCache = tempF.dirCache
f.root = tempF.root
return f, fs.ErrorIsFile
diff --git a/backend/drive/drive_internal_test.go b/backend/drive/drive_internal_test.go
index 65c84fe0e..22755e4e3 100644
--- a/backend/drive/drive_internal_test.go
+++ b/backend/drive/drive_internal_test.go
@@ -11,11 +11,11 @@ import (
"strings"
"testing"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fstest/fstests"
"github.com/pkg/errors"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fstest/fstests"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"google.golang.org/api/drive/v3"
diff --git a/backend/drive/drive_test.go b/backend/drive/drive_test.go
index 0db327e47..d3c7b214b 100644
--- a/backend/drive/drive_test.go
+++ b/backend/drive/drive_test.go
@@ -5,8 +5,8 @@ package drive
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/drive/upload.go b/backend/drive/upload.go
index 2dcecdefa..1bc547049 100644
--- a/backend/drive/upload.go
+++ b/backend/drive/upload.go
@@ -19,10 +19,10 @@ import (
"regexp"
"strconv"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/lib/readers"
"google.golang.org/api/drive/v3"
"google.golang.org/api/googleapi"
)
diff --git a/backend/dropbox/dbhash/dbhash_test.go b/backend/dropbox/dbhash/dbhash_test.go
index 9bac957bf..6db2bca2e 100644
--- a/backend/dropbox/dbhash/dbhash_test.go
+++ b/backend/dropbox/dbhash/dbhash_test.go
@@ -5,7 +5,7 @@ import (
"fmt"
"testing"
- "github.com/ncw/rclone/backend/dropbox/dbhash"
+ "github.com/rclone/rclone/backend/dropbox/dbhash"
"github.com/stretchr/testify/assert"
)
diff --git a/backend/dropbox/dropbox.go b/backend/dropbox/dropbox.go
index 9d2f8b82c..a6d0cd6bf 100644
--- a/backend/dropbox/dropbox.go
+++ b/backend/dropbox/dropbox.go
@@ -38,17 +38,17 @@ import (
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/sharing"
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/team"
"github.com/dropbox/dropbox-sdk-go-unofficial/dropbox/users"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/readers"
"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/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/readers"
"golang.org/x/oauth2"
)
diff --git a/backend/dropbox/dropbox_test.go b/backend/dropbox/dropbox_test.go
index ddcb8ce87..673082131 100644
--- a/backend/dropbox/dropbox_test.go
+++ b/backend/dropbox/dropbox_test.go
@@ -4,8 +4,8 @@ package dropbox
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/fichier/api.go b/backend/fichier/api.go
index b7514b192..e46f457fc 100644
--- a/backend/fichier/api.go
+++ b/backend/fichier/api.go
@@ -8,10 +8,10 @@ import (
"strconv"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/lib/rest"
)
// retryErrorCodes is a slice of error codes that we will retry
diff --git a/backend/fichier/fichier.go b/backend/fichier/fichier.go
index 0a18b3210..619504a00 100644
--- a/backend/fichier/fichier.go
+++ b/backend/fichier/fichier.go
@@ -9,15 +9,15 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/dircache"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/dircache"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
)
const (
@@ -205,7 +205,7 @@ func NewFs(name string, rootleaf string, config configmap.Mapper) (fs.Fs, error)
f.features.Fill(&tempF)
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
- // See https://github.com/ncw/rclone/issues/2182
+ // See https://github.com/rclone/rclone/issues/2182
f.dirCache = tempF.dirCache
f.root = tempF.root
// return an error with an fs which points to the parent
diff --git a/backend/fichier/fichier_test.go b/backend/fichier/fichier_test.go
index 3f112bfd6..408eaf9e5 100644
--- a/backend/fichier/fichier_test.go
+++ b/backend/fichier/fichier_test.go
@@ -4,8 +4,8 @@ package fichier
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/fichier/object.go b/backend/fichier/object.go
index fb43541a4..5b4eb5933 100644
--- a/backend/fichier/object.go
+++ b/backend/fichier/object.go
@@ -6,10 +6,10 @@ import (
"net/http"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/rest"
)
// Object is a filesystem like object provided by an Fs
diff --git a/backend/ftp/ftp.go b/backend/ftp/ftp.go
index dd6230c1f..95756a85a 100644
--- a/backend/ftp/ftp.go
+++ b/backend/ftp/ftp.go
@@ -12,14 +12,14 @@ import (
"time"
"github.com/jlaffaye/ftp"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/readers"
)
// Register with Fs
diff --git a/backend/ftp/ftp_test.go b/backend/ftp/ftp_test.go
index bb71e7382..fd42517c0 100644
--- a/backend/ftp/ftp_test.go
+++ b/backend/ftp/ftp_test.go
@@ -4,8 +4,8 @@ package ftp_test
import (
"testing"
- "github.com/ncw/rclone/backend/ftp"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/ftp"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/googlecloudstorage/googlecloudstorage.go b/backend/googlecloudstorage/googlecloudstorage.go
index 9412d1f36..55f5237b0 100644
--- a/backend/googlecloudstorage/googlecloudstorage.go
+++ b/backend/googlecloudstorage/googlecloudstorage.go
@@ -28,18 +28,18 @@ 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/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
"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/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/googleapi"
diff --git a/backend/googlecloudstorage/googlecloudstorage_test.go b/backend/googlecloudstorage/googlecloudstorage_test.go
index cfb0bfdf0..d54f2b061 100644
--- a/backend/googlecloudstorage/googlecloudstorage_test.go
+++ b/backend/googlecloudstorage/googlecloudstorage_test.go
@@ -5,8 +5,8 @@ package googlecloudstorage_test
import (
"testing"
- "github.com/ncw/rclone/backend/googlecloudstorage"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/googlecloudstorage"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/googlephotos/albums.go b/backend/googlephotos/albums.go
index 79ea76728..00cdbb914 100644
--- a/backend/googlephotos/albums.go
+++ b/backend/googlephotos/albums.go
@@ -7,7 +7,7 @@ import (
"strings"
"sync"
- "github.com/ncw/rclone/backend/googlephotos/api"
+ "github.com/rclone/rclone/backend/googlephotos/api"
)
// All the albums
diff --git a/backend/googlephotos/albums_test.go b/backend/googlephotos/albums_test.go
index 2ffb4e8af..8b78a1b8f 100644
--- a/backend/googlephotos/albums_test.go
+++ b/backend/googlephotos/albums_test.go
@@ -3,7 +3,7 @@ package googlephotos
import (
"testing"
- "github.com/ncw/rclone/backend/googlephotos/api"
+ "github.com/rclone/rclone/backend/googlephotos/api"
"github.com/stretchr/testify/assert"
)
diff --git a/backend/googlephotos/googlephotos.go b/backend/googlephotos/googlephotos.go
index 1f249d42e..d54b5e414 100644
--- a/backend/googlephotos/googlephotos.go
+++ b/backend/googlephotos/googlephotos.go
@@ -18,20 +18,20 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/backend/googlephotos/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/dirtree"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/googlephotos/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/dirtree"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
)
diff --git a/backend/googlephotos/googlephotos_test.go b/backend/googlephotos/googlephotos_test.go
index 9bc591c34..22e1e1878 100644
--- a/backend/googlephotos/googlephotos_test.go
+++ b/backend/googlephotos/googlephotos_test.go
@@ -9,10 +9,10 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/googlephotos/pattern.go b/backend/googlephotos/pattern.go
index 5e2e242cb..2dafede39 100644
--- a/backend/googlephotos/pattern.go
+++ b/backend/googlephotos/pattern.go
@@ -11,9 +11,9 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/backend/googlephotos/api"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/googlephotos/api"
+ "github.com/rclone/rclone/fs"
)
// lister describes the subset of the interfaces on Fs needed for the
diff --git a/backend/googlephotos/pattern_test.go b/backend/googlephotos/pattern_test.go
index 1db836a6a..2bdd7c28a 100644
--- a/backend/googlephotos/pattern_test.go
+++ b/backend/googlephotos/pattern_test.go
@@ -6,11 +6,11 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/backend/googlephotos/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/dirtree"
- "github.com/ncw/rclone/fstest"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/backend/googlephotos/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/dirtree"
+ "github.com/rclone/rclone/fstest"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/http/http.go b/backend/http/http.go
index da5e412aa..1be2b7780 100644
--- a/backend/http/http.go
+++ b/backend/http/http.go
@@ -15,13 +15,13 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/net/html"
)
diff --git a/backend/http/http_internal_test.go b/backend/http/http_internal_test.go
index 6c3505236..de46b47be 100644
--- a/backend/http/http_internal_test.go
+++ b/backend/http/http_internal_test.go
@@ -13,11 +13,11 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fstest"
- "github.com/ncw/rclone/lib/rest"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fstest"
+ "github.com/rclone/rclone/lib/rest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/http/test/index_files/apache.html b/backend/http/test/index_files/apache.html
index ba754ad9e..4791ebf5c 100644
--- a/backend/http/test/index_files/apache.html
+++ b/backend/http/test/index_files/apache.html
@@ -24,7 +24,7 @@
timer-test 09-May-2017 17:05 1.5M
words-to-regexp.pl 01-Mar-2005 20:43 6.0K
-
+
Now 100% better.mp3 2017-08-01 11:41 0
Now better.mp3 2017-08-01 11:41 0
diff --git a/backend/hubic/auth.go b/backend/hubic/auth.go
index 08469acb6..d38a5f2b4 100644
--- a/backend/hubic/auth.go
+++ b/backend/hubic/auth.go
@@ -4,8 +4,8 @@ import (
"net/http"
"time"
- "github.com/ncw/rclone/fs"
"github.com/ncw/swift"
+ "github.com/rclone/rclone/fs"
)
// auth is an authenticator for swift
diff --git a/backend/hubic/hubic.go b/backend/hubic/hubic.go
index feab504a4..e86448986 100644
--- a/backend/hubic/hubic.go
+++ b/backend/hubic/hubic.go
@@ -15,16 +15,16 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/backend/swift"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/lib/oauthutil"
swiftLib "github.com/ncw/swift"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/swift"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/lib/oauthutil"
"golang.org/x/oauth2"
)
diff --git a/backend/hubic/hubic_test.go b/backend/hubic/hubic_test.go
index 335642250..08d6f122d 100644
--- a/backend/hubic/hubic_test.go
+++ b/backend/hubic/hubic_test.go
@@ -4,8 +4,8 @@ package hubic_test
import (
"testing"
- "github.com/ncw/rclone/backend/hubic"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/hubic"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/jottacloud/jottacloud.go b/backend/jottacloud/jottacloud.go
index e4d4bd6de..e97ba7bcb 100644
--- a/backend/jottacloud/jottacloud.go
+++ b/backend/jottacloud/jottacloud.go
@@ -18,21 +18,21 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/backend/jottacloud/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/jottacloud/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/oauth2"
)
@@ -88,7 +88,7 @@ func init() {
srv := rest.NewClient(fshttp.NewClient(fs.Config))
- // ask if we should create a device specifc token: https://github.com/ncw/rclone/issues/2995
+ // ask if we should create a device specifc token: https://github.com/rclone/rclone/issues/2995
fmt.Printf("\nDo you want to create a machine specific API key?\n\nRclone has it's own Jottacloud API KEY which works fine as long as one only uses rclone on a single machine. When you want to use rclone with this account on more than one machine it's recommended to create a machine specific API key. These keys can NOT be shared between machines.\n\n")
if config.Confirm() {
// random generator to generate random device names
diff --git a/backend/jottacloud/jottacloud_internal_test.go b/backend/jottacloud/jottacloud_internal_test.go
index 545804aec..b2b11758a 100644
--- a/backend/jottacloud/jottacloud_internal_test.go
+++ b/backend/jottacloud/jottacloud_internal_test.go
@@ -6,7 +6,7 @@ import (
"io"
"testing"
- "github.com/ncw/rclone/lib/readers"
+ "github.com/rclone/rclone/lib/readers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/jottacloud/jottacloud_test.go b/backend/jottacloud/jottacloud_test.go
index 9bede911c..c509e8431 100644
--- a/backend/jottacloud/jottacloud_test.go
+++ b/backend/jottacloud/jottacloud_test.go
@@ -4,8 +4,8 @@ package jottacloud_test
import (
"testing"
- "github.com/ncw/rclone/backend/jottacloud"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/jottacloud"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/koofr/koofr.go b/backend/koofr/koofr.go
index 83c3c748b..976df31fa 100644
--- a/backend/koofr/koofr.go
+++ b/backend/koofr/koofr.go
@@ -11,11 +11,11 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/hash"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/hash"
httpclient "github.com/koofr/go-httpclient"
koofrclient "github.com/koofr/go-koofrclient"
diff --git a/backend/koofr/koofr_test.go b/backend/koofr/koofr_test.go
index a910156a7..3c0dcca75 100644
--- a/backend/koofr/koofr_test.go
+++ b/backend/koofr/koofr_test.go
@@ -3,7 +3,7 @@ package koofr_test
import (
"testing"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/local/about_unix.go b/backend/local/about_unix.go
index 93a4394c6..f856a7964 100644
--- a/backend/local/about_unix.go
+++ b/backend/local/about_unix.go
@@ -6,8 +6,8 @@ import (
"context"
"syscall"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
)
// About gets quota information
diff --git a/backend/local/about_windows.go b/backend/local/about_windows.go
index 720885d76..32793e719 100644
--- a/backend/local/about_windows.go
+++ b/backend/local/about_windows.go
@@ -7,8 +7,8 @@ import (
"syscall"
"unsafe"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
)
var getFreeDiskSpace = syscall.NewLazyDLL("kernel32.dll").NewProc("GetDiskFreeSpaceExW")
diff --git a/backend/local/local.go b/backend/local/local.go
index caafde9a1..12c76985f 100644
--- a/backend/local/local.go
+++ b/backend/local/local.go
@@ -17,15 +17,15 @@ import (
"time"
"unicode/utf8"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/file"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/file"
+ "github.com/rclone/rclone/lib/readers"
)
// Constants
@@ -86,7 +86,7 @@ are being uploaded and aborts with a message which starts "can't copy
- source file is being updated" if the file changes during upload.
However on some file systems this modification time check may fail (eg
-[Glusterfs #2206](https://github.com/ncw/rclone/issues/2206)) so this
+[Glusterfs #2206](https://github.com/rclone/rclone/issues/2206)) so this
check can be disabled with this flag.`,
Default: false,
Advanced: true,
diff --git a/backend/local/local_internal_test.go b/backend/local/local_internal_test.go
index a78289ec7..704f72509 100644
--- a/backend/local/local_internal_test.go
+++ b/backend/local/local_internal_test.go
@@ -10,12 +10,12 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fstest"
- "github.com/ncw/rclone/lib/file"
- "github.com/ncw/rclone/lib/readers"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fstest"
+ "github.com/rclone/rclone/lib/file"
+ "github.com/rclone/rclone/lib/readers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/backend/local/local_test.go b/backend/local/local_test.go
index 81f9f6e21..8ecab2dbd 100644
--- a/backend/local/local_test.go
+++ b/backend/local/local_test.go
@@ -4,8 +4,8 @@ package local_test
import (
"testing"
- "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/local/preallocate_unix.go b/backend/local/preallocate_unix.go
index 215b19066..5caf6c1e4 100644
--- a/backend/local/preallocate_unix.go
+++ b/backend/local/preallocate_unix.go
@@ -6,7 +6,7 @@ import (
"os"
"sync/atomic"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
"golang.org/x/sys/unix"
)
diff --git a/backend/local/read_device_unix.go b/backend/local/read_device_unix.go
index 38cf60ed7..7a1b91b24 100644
--- a/backend/local/read_device_unix.go
+++ b/backend/local/read_device_unix.go
@@ -8,7 +8,7 @@ import (
"os"
"syscall"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// readDevice turns a valid os.FileInfo into a device number,
diff --git a/backend/local/remove_windows.go b/backend/local/remove_windows.go
index bf28b2cf3..65acb5428 100644
--- a/backend/local/remove_windows.go
+++ b/backend/local/remove_windows.go
@@ -7,7 +7,7 @@ import (
"syscall"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
const (
diff --git a/backend/mega/mega.go b/backend/mega/mega.go
index 0fb960c80..b423a71ab 100644
--- a/backend/mega/mega.go
+++ b/backend/mega/mega.go
@@ -24,15 +24,15 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/readers"
mega "github.com/t3rm1n4l/go-mega"
)
diff --git a/backend/mega/mega_test.go b/backend/mega/mega_test.go
index 37d0798a8..8016b39ae 100644
--- a/backend/mega/mega_test.go
+++ b/backend/mega/mega_test.go
@@ -4,8 +4,8 @@ package mega_test
import (
"testing"
- "github.com/ncw/rclone/backend/mega"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/mega"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/onedrive/onedrive.go b/backend/onedrive/onedrive.go
index d28bc3f46..c3edc00c3 100644
--- a/backend/onedrive/onedrive.go
+++ b/backend/onedrive/onedrive.go
@@ -15,22 +15,22 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/lib/atexit"
+ "github.com/rclone/rclone/lib/atexit"
- "github.com/ncw/rclone/backend/onedrive/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/dircache"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/readers"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/onedrive/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/dircache"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/readers"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/oauth2"
)
@@ -541,7 +541,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
}
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
- // See https://github.com/ncw/rclone/issues/2182
+ // See https://github.com/rclone/rclone/issues/2182
f.dirCache = tempF.dirCache
f.root = tempF.root
// return an error with an fs which points to the parent
diff --git a/backend/onedrive/onedrive_test.go b/backend/onedrive/onedrive_test.go
index 65816c9f1..93d6d41b8 100644
--- a/backend/onedrive/onedrive_test.go
+++ b/backend/onedrive/onedrive_test.go
@@ -4,8 +4,8 @@ package onedrive
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/opendrive/opendrive.go b/backend/opendrive/opendrive.go
index ddeab9546..6143ec570 100644
--- a/backend/opendrive/opendrive.go
+++ b/backend/opendrive/opendrive.go
@@ -11,18 +11,18 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/dircache"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/readers"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/dircache"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/readers"
+ "github.com/rclone/rclone/lib/rest"
)
const (
@@ -199,7 +199,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
}
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
- // See https://github.com/ncw/rclone/issues/2182
+ // See https://github.com/rclone/rclone/issues/2182
f.dirCache = tempF.dirCache
f.root = tempF.root
// return an error with an fs which points to the parent
diff --git a/backend/opendrive/opendrive_test.go b/backend/opendrive/opendrive_test.go
index 66a0a3533..f857ed478 100644
--- a/backend/opendrive/opendrive_test.go
+++ b/backend/opendrive/opendrive_test.go
@@ -4,8 +4,8 @@ package opendrive_test
import (
"testing"
- "github.com/ncw/rclone/backend/opendrive"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/opendrive"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/pcloud/pcloud.go b/backend/pcloud/pcloud.go
index 35db9f8f0..b40f8ba8f 100644
--- a/backend/pcloud/pcloud.go
+++ b/backend/pcloud/pcloud.go
@@ -19,19 +19,19 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/backend/pcloud/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/dircache"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/pcloud/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/dircache"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/oauth2"
)
@@ -295,7 +295,7 @@ func NewFs(name, root string, m configmap.Mapper) (fs.Fs, error) {
}
// XXX: update the old f here instead of returning tempF, since
// `features` were already filled with functions having *f as a receiver.
- // See https://github.com/ncw/rclone/issues/2182
+ // See https://github.com/rclone/rclone/issues/2182
f.dirCache = tempF.dirCache
f.root = tempF.root
// return an error with an fs which points to the parent
diff --git a/backend/pcloud/pcloud_test.go b/backend/pcloud/pcloud_test.go
index 243ecb3ac..cdc89a98b 100644
--- a/backend/pcloud/pcloud_test.go
+++ b/backend/pcloud/pcloud_test.go
@@ -4,8 +4,8 @@ package pcloud_test
import (
"testing"
- "github.com/ncw/rclone/backend/pcloud"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/pcloud"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/qingstor/qingstor.go b/backend/qingstor/qingstor.go
index fcdbee811..6fc3a2be5 100644
--- a/backend/qingstor/qingstor.go
+++ b/backend/qingstor/qingstor.go
@@ -17,13 +17,13 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
qsConfig "github.com/yunify/qingstor-sdk-go/config"
qsErr "github.com/yunify/qingstor-sdk-go/request/errors"
qs "github.com/yunify/qingstor-sdk-go/service"
diff --git a/backend/qingstor/qingstor_test.go b/backend/qingstor/qingstor_test.go
index 4b0f36e13..cd84ab35d 100644
--- a/backend/qingstor/qingstor_test.go
+++ b/backend/qingstor/qingstor_test.go
@@ -7,8 +7,8 @@ package qingstor
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/qingstor/upload.go b/backend/qingstor/upload.go
index 2ff2220aa..c00d532fe 100644
--- a/backend/qingstor/upload.go
+++ b/backend/qingstor/upload.go
@@ -13,8 +13,8 @@ import (
"sort"
"sync"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
qs "github.com/yunify/qingstor-sdk-go/service"
)
diff --git a/backend/s3/s3.go b/backend/s3/s3.go
index c307e3f49..9f90e5542 100644
--- a/backend/s3/s3.go
+++ b/backend/s3/s3.go
@@ -37,17 +37,17 @@ import (
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
"github.com/aws/aws-sdk-go/service/s3/s3manager"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/ncw/swift"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
)
// Register with Fs
diff --git a/backend/s3/s3_test.go b/backend/s3/s3_test.go
index 1b9a4045b..9228cd588 100644
--- a/backend/s3/s3_test.go
+++ b/backend/s3/s3_test.go
@@ -4,8 +4,8 @@ package s3
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/sftp/sftp.go b/backend/sftp/sftp.go
index 25457b130..20429071f 100644
--- a/backend/sftp/sftp.go
+++ b/backend/sftp/sftp.go
@@ -19,17 +19,17 @@ 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/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/env"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
"github.com/pkg/sftp"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/env"
+ "github.com/rclone/rclone/lib/readers"
sshagent "github.com/xanzy/ssh-agent"
"golang.org/x/crypto/ssh"
"golang.org/x/time/rate"
diff --git a/backend/sftp/sftp_test.go b/backend/sftp/sftp_test.go
index 9cf2cfa69..1fc59cabb 100644
--- a/backend/sftp/sftp_test.go
+++ b/backend/sftp/sftp_test.go
@@ -7,8 +7,8 @@ package sftp_test
import (
"testing"
- "github.com/ncw/rclone/backend/sftp"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/sftp"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/swift/swift.go b/backend/swift/swift.go
index f9bcc9dd8..09b962419 100644
--- a/backend/swift/swift.go
+++ b/backend/swift/swift.go
@@ -14,17 +14,17 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/pacer"
"github.com/ncw/swift"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/pacer"
)
// Constants
diff --git a/backend/swift/swift_internal_test.go b/backend/swift/swift_internal_test.go
index d9d5b4ca5..292d2b865 100644
--- a/backend/swift/swift_internal_test.go
+++ b/backend/swift/swift_internal_test.go
@@ -4,8 +4,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs/fserrors"
"github.com/ncw/swift"
+ "github.com/rclone/rclone/fs/fserrors"
"github.com/stretchr/testify/assert"
)
diff --git a/backend/swift/swift_test.go b/backend/swift/swift_test.go
index f1c2dc364..7b182230a 100644
--- a/backend/swift/swift_test.go
+++ b/backend/swift/swift_test.go
@@ -4,8 +4,8 @@ package swift
import (
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/union/union.go b/backend/union/union.go
index 9be9676c4..b619c2f9d 100644
--- a/backend/union/union.go
+++ b/backend/union/union.go
@@ -9,12 +9,12 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/hash"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/hash"
)
// Register with Fs
diff --git a/backend/union/union_test.go b/backend/union/union_test.go
index b24ec29bd..b3c59573f 100644
--- a/backend/union/union_test.go
+++ b/backend/union/union_test.go
@@ -4,8 +4,8 @@ package union_test
import (
"testing"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fstest/fstests"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/webdav/api/types.go b/backend/webdav/api/types.go
index 8fe89279d..376854f05 100644
--- a/backend/webdav/api/types.go
+++ b/backend/webdav/api/types.go
@@ -9,15 +9,15 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
)
const (
// Wed, 27 Sep 2017 14:28:34 GMT
timeFormat = time.RFC1123
// The same as time.RFC1123 with optional leading zeros on the date
- // see https://github.com/ncw/rclone/issues/2574
+ // see https://github.com/rclone/rclone/issues/2574
noZerosRFC1123 = "Mon, _2 Jan 2006 15:04:05 MST"
)
diff --git a/backend/webdav/odrvcookie/fetch.go b/backend/webdav/odrvcookie/fetch.go
index 65509c455..4f276b97f 100644
--- a/backend/webdav/odrvcookie/fetch.go
+++ b/backend/webdav/odrvcookie/fetch.go
@@ -11,9 +11,9 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/fshttp"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/fshttp"
"golang.org/x/net/publicsuffix"
)
diff --git a/backend/webdav/webdav.go b/backend/webdav/webdav.go
index b20151143..c73dbef75 100644
--- a/backend/webdav/webdav.go
+++ b/backend/webdav/webdav.go
@@ -20,18 +20,18 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/backend/webdav/api"
- "github.com/ncw/rclone/backend/webdav/odrvcookie"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/webdav/api"
+ "github.com/rclone/rclone/backend/webdav/odrvcookie"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/rest"
)
const (
diff --git a/backend/webdav/webdav_test.go b/backend/webdav/webdav_test.go
index a4264fa45..87191404a 100644
--- a/backend/webdav/webdav_test.go
+++ b/backend/webdav/webdav_test.go
@@ -4,8 +4,8 @@ package webdav_test
import (
"testing"
- "github.com/ncw/rclone/backend/webdav"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/webdav"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/backend/yandex/yandex.go b/backend/yandex/yandex.go
index fc6d74924..71d9e5896 100644
--- a/backend/yandex/yandex.go
+++ b/backend/yandex/yandex.go
@@ -13,19 +13,19 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/backend/yandex/api"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/oauthutil"
- "github.com/ncw/rclone/lib/pacer"
- "github.com/ncw/rclone/lib/readers"
- "github.com/ncw/rclone/lib/rest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/yandex/api"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/oauthutil"
+ "github.com/rclone/rclone/lib/pacer"
+ "github.com/rclone/rclone/lib/readers"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/oauth2"
)
diff --git a/backend/yandex/yandex_test.go b/backend/yandex/yandex_test.go
index 4dcf976ab..fa3827d61 100644
--- a/backend/yandex/yandex_test.go
+++ b/backend/yandex/yandex_test.go
@@ -4,8 +4,8 @@ package yandex_test
import (
"testing"
- "github.com/ncw/rclone/backend/yandex"
- "github.com/ncw/rclone/fstest/fstests"
+ "github.com/rclone/rclone/backend/yandex"
+ "github.com/rclone/rclone/fstest/fstests"
)
// TestIntegration runs integration tests against the remote
diff --git a/bin/bisect-go-rclone.sh b/bin/bisect-go-rclone.sh
index 9a15d1188..ed675c609 100755
--- a/bin/bisect-go-rclone.sh
+++ b/bin/bisect-go-rclone.sh
@@ -16,7 +16,7 @@ source ~/bin/use-go1.11
go version
# Compile rclone
-cd ~/go/src/github.com/ncw/rclone
+cd ~/go/src/github.com/rclone/rclone
make
# run the failing test
diff --git a/bin/cross-compile.go b/bin/cross-compile.go
index 2553dba7c..2280a7408 100644
--- a/bin/cross-compile.go
+++ b/bin/cross-compile.go
@@ -181,7 +181,7 @@ func compileArch(version, goos, goarch, dir string) bool {
}
args := []string{
"go", "build",
- "--ldflags", "-s -X github.com/ncw/rclone/fs.Version=" + version,
+ "--ldflags", "-s -X github.com/rclone/rclone/fs.Version=" + version,
"-i",
"-o", output,
"-tags", *tags,
diff --git a/bin/get-github-release.go b/bin/get-github-release.go
index 1894cee2c..ab309a1a4 100644
--- a/bin/get-github-release.go
+++ b/bin/get-github-release.go
@@ -27,7 +27,7 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/lib/rest"
+ "github.com/rclone/rclone/lib/rest"
"golang.org/x/net/html"
"golang.org/x/sys/unix"
)
diff --git a/cmd/about/about.go b/cmd/about/about.go
index ab5a52cf9..f9b88793f 100644
--- a/cmd/about/about.go
+++ b/cmd/about/about.go
@@ -6,9 +6,9 @@ import (
"fmt"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
"github.com/spf13/cobra"
)
diff --git a/cmd/all/all.go b/cmd/all/all.go
index 004a986cb..00108cdfe 100644
--- a/cmd/all/all.go
+++ b/cmd/all/all.go
@@ -3,56 +3,56 @@ package all
import (
// Active commands
- _ "github.com/ncw/rclone/cmd"
- _ "github.com/ncw/rclone/cmd/about"
- _ "github.com/ncw/rclone/cmd/authorize"
- _ "github.com/ncw/rclone/cmd/cachestats"
- _ "github.com/ncw/rclone/cmd/cat"
- _ "github.com/ncw/rclone/cmd/check"
- _ "github.com/ncw/rclone/cmd/cleanup"
- _ "github.com/ncw/rclone/cmd/cmount"
- _ "github.com/ncw/rclone/cmd/config"
- _ "github.com/ncw/rclone/cmd/copy"
- _ "github.com/ncw/rclone/cmd/copyto"
- _ "github.com/ncw/rclone/cmd/copyurl"
- _ "github.com/ncw/rclone/cmd/cryptcheck"
- _ "github.com/ncw/rclone/cmd/cryptdecode"
- _ "github.com/ncw/rclone/cmd/dbhashsum"
- _ "github.com/ncw/rclone/cmd/dedupe"
- _ "github.com/ncw/rclone/cmd/delete"
- _ "github.com/ncw/rclone/cmd/deletefile"
- _ "github.com/ncw/rclone/cmd/genautocomplete"
- _ "github.com/ncw/rclone/cmd/gendocs"
- _ "github.com/ncw/rclone/cmd/hashsum"
- _ "github.com/ncw/rclone/cmd/info"
- _ "github.com/ncw/rclone/cmd/link"
- _ "github.com/ncw/rclone/cmd/listremotes"
- _ "github.com/ncw/rclone/cmd/ls"
- _ "github.com/ncw/rclone/cmd/lsd"
- _ "github.com/ncw/rclone/cmd/lsf"
- _ "github.com/ncw/rclone/cmd/lsjson"
- _ "github.com/ncw/rclone/cmd/lsl"
- _ "github.com/ncw/rclone/cmd/md5sum"
- _ "github.com/ncw/rclone/cmd/memtest"
- _ "github.com/ncw/rclone/cmd/mkdir"
- _ "github.com/ncw/rclone/cmd/mount"
- _ "github.com/ncw/rclone/cmd/move"
- _ "github.com/ncw/rclone/cmd/moveto"
- _ "github.com/ncw/rclone/cmd/ncdu"
- _ "github.com/ncw/rclone/cmd/obscure"
- _ "github.com/ncw/rclone/cmd/purge"
- _ "github.com/ncw/rclone/cmd/rc"
- _ "github.com/ncw/rclone/cmd/rcat"
- _ "github.com/ncw/rclone/cmd/rcd"
- _ "github.com/ncw/rclone/cmd/reveal"
- _ "github.com/ncw/rclone/cmd/rmdir"
- _ "github.com/ncw/rclone/cmd/rmdirs"
- _ "github.com/ncw/rclone/cmd/serve"
- _ "github.com/ncw/rclone/cmd/settier"
- _ "github.com/ncw/rclone/cmd/sha1sum"
- _ "github.com/ncw/rclone/cmd/size"
- _ "github.com/ncw/rclone/cmd/sync"
- _ "github.com/ncw/rclone/cmd/touch"
- _ "github.com/ncw/rclone/cmd/tree"
- _ "github.com/ncw/rclone/cmd/version"
+ _ "github.com/rclone/rclone/cmd"
+ _ "github.com/rclone/rclone/cmd/about"
+ _ "github.com/rclone/rclone/cmd/authorize"
+ _ "github.com/rclone/rclone/cmd/cachestats"
+ _ "github.com/rclone/rclone/cmd/cat"
+ _ "github.com/rclone/rclone/cmd/check"
+ _ "github.com/rclone/rclone/cmd/cleanup"
+ _ "github.com/rclone/rclone/cmd/cmount"
+ _ "github.com/rclone/rclone/cmd/config"
+ _ "github.com/rclone/rclone/cmd/copy"
+ _ "github.com/rclone/rclone/cmd/copyto"
+ _ "github.com/rclone/rclone/cmd/copyurl"
+ _ "github.com/rclone/rclone/cmd/cryptcheck"
+ _ "github.com/rclone/rclone/cmd/cryptdecode"
+ _ "github.com/rclone/rclone/cmd/dbhashsum"
+ _ "github.com/rclone/rclone/cmd/dedupe"
+ _ "github.com/rclone/rclone/cmd/delete"
+ _ "github.com/rclone/rclone/cmd/deletefile"
+ _ "github.com/rclone/rclone/cmd/genautocomplete"
+ _ "github.com/rclone/rclone/cmd/gendocs"
+ _ "github.com/rclone/rclone/cmd/hashsum"
+ _ "github.com/rclone/rclone/cmd/info"
+ _ "github.com/rclone/rclone/cmd/link"
+ _ "github.com/rclone/rclone/cmd/listremotes"
+ _ "github.com/rclone/rclone/cmd/ls"
+ _ "github.com/rclone/rclone/cmd/lsd"
+ _ "github.com/rclone/rclone/cmd/lsf"
+ _ "github.com/rclone/rclone/cmd/lsjson"
+ _ "github.com/rclone/rclone/cmd/lsl"
+ _ "github.com/rclone/rclone/cmd/md5sum"
+ _ "github.com/rclone/rclone/cmd/memtest"
+ _ "github.com/rclone/rclone/cmd/mkdir"
+ _ "github.com/rclone/rclone/cmd/mount"
+ _ "github.com/rclone/rclone/cmd/move"
+ _ "github.com/rclone/rclone/cmd/moveto"
+ _ "github.com/rclone/rclone/cmd/ncdu"
+ _ "github.com/rclone/rclone/cmd/obscure"
+ _ "github.com/rclone/rclone/cmd/purge"
+ _ "github.com/rclone/rclone/cmd/rc"
+ _ "github.com/rclone/rclone/cmd/rcat"
+ _ "github.com/rclone/rclone/cmd/rcd"
+ _ "github.com/rclone/rclone/cmd/reveal"
+ _ "github.com/rclone/rclone/cmd/rmdir"
+ _ "github.com/rclone/rclone/cmd/rmdirs"
+ _ "github.com/rclone/rclone/cmd/serve"
+ _ "github.com/rclone/rclone/cmd/settier"
+ _ "github.com/rclone/rclone/cmd/sha1sum"
+ _ "github.com/rclone/rclone/cmd/size"
+ _ "github.com/rclone/rclone/cmd/sync"
+ _ "github.com/rclone/rclone/cmd/touch"
+ _ "github.com/rclone/rclone/cmd/tree"
+ _ "github.com/rclone/rclone/cmd/version"
)
diff --git a/cmd/authorize/authorize.go b/cmd/authorize/authorize.go
index 745927c8e..b43f58a1e 100644
--- a/cmd/authorize/authorize.go
+++ b/cmd/authorize/authorize.go
@@ -1,8 +1,8 @@
package authorize
import (
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/config"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/config"
"github.com/spf13/cobra"
)
diff --git a/cmd/cachestats/cachestats.go b/cmd/cachestats/cachestats.go
index bba5414a9..2529d3c58 100644
--- a/cmd/cachestats/cachestats.go
+++ b/cmd/cachestats/cachestats.go
@@ -6,9 +6,9 @@ import (
"encoding/json"
"fmt"
- "github.com/ncw/rclone/backend/cache"
- "github.com/ncw/rclone/cmd"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/cache"
+ "github.com/rclone/rclone/cmd"
"github.com/spf13/cobra"
)
diff --git a/cmd/cat/cat.go b/cmd/cat/cat.go
index bf2b1b6f0..567aaaa45 100644
--- a/cmd/cat/cat.go
+++ b/cmd/cat/cat.go
@@ -7,8 +7,8 @@ import (
"log"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/check/check.go b/cmd/check/check.go
index aa95a5c69..05e1f779e 100644
--- a/cmd/check/check.go
+++ b/cmd/check/check.go
@@ -3,8 +3,8 @@ package check
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/cleanup/cleanup.go b/cmd/cleanup/cleanup.go
index cb5085022..b12d9d425 100644
--- a/cmd/cleanup/cleanup.go
+++ b/cmd/cleanup/cleanup.go
@@ -3,8 +3,8 @@ package cleanup
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/cmd.go b/cmd/cmd.go
index 1d6ba8f9a..815fe6a93 100644
--- a/cmd/cmd.go
+++ b/cmd/cmd.go
@@ -20,20 +20,20 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/config/configflags"
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/filter/filterflags"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fspath"
- fslog "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/fs/rc/rcflags"
- "github.com/ncw/rclone/fs/rc/rcserver"
- "github.com/ncw/rclone/lib/atexit"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/config/configflags"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/filter/filterflags"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fspath"
+ fslog "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/fs/rc/rcflags"
+ "github.com/rclone/rclone/fs/rc/rcserver"
+ "github.com/rclone/rclone/lib/atexit"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
diff --git a/cmd/cmount/fs.go b/cmd/cmount/fs.go
index b0a5e511e..a53f8765a 100644
--- a/cmd/cmount/fs.go
+++ b/cmd/cmount/fs.go
@@ -12,12 +12,12 @@ import (
"time"
"github.com/billziss-gh/cgofuse/fuse"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
)
const fhUnset = ^uint64(0)
diff --git a/cmd/cmount/mount.go b/cmd/cmount/mount.go
index 45b51f27f..b11ad16f4 100644
--- a/cmd/cmount/mount.go
+++ b/cmd/cmount/mount.go
@@ -17,12 +17,12 @@ import (
"time"
"github.com/billziss-gh/cgofuse/fuse"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
"github.com/okzk/sdnotify"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
)
func init() {
diff --git a/cmd/cmount/mount_test.go b/cmd/cmount/mount_test.go
index 110fb16f9..2bff49ee7 100644
--- a/cmd/cmount/mount_test.go
+++ b/cmd/cmount/mount_test.go
@@ -11,7 +11,7 @@ package cmount
import (
"testing"
- "github.com/ncw/rclone/cmd/mountlib/mounttest"
+ "github.com/rclone/rclone/cmd/mountlib/mounttest"
)
func TestMount(t *testing.T) {
diff --git a/cmd/config/config.go b/cmd/config/config.go
index a209a6a0d..64180aa76 100644
--- a/cmd/config/config.go
+++ b/cmd/config/config.go
@@ -3,9 +3,9 @@ package config
import (
"errors"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/rc"
"github.com/spf13/cobra"
)
diff --git a/cmd/copy/copy.go b/cmd/copy/copy.go
index 34cdb31ff..c10a653fe 100644
--- a/cmd/copy/copy.go
+++ b/cmd/copy/copy.go
@@ -3,9 +3,9 @@ package copy
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/sync"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/sync"
"github.com/spf13/cobra"
)
diff --git a/cmd/copyto/copyto.go b/cmd/copyto/copyto.go
index 8d7846d86..997ef1325 100644
--- a/cmd/copyto/copyto.go
+++ b/cmd/copyto/copyto.go
@@ -3,9 +3,9 @@ package copyto
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/sync"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/sync"
"github.com/spf13/cobra"
)
diff --git a/cmd/copyurl/copyurl.go b/cmd/copyurl/copyurl.go
index f21d91be4..54b16e7e9 100644
--- a/cmd/copyurl/copyurl.go
+++ b/cmd/copyurl/copyurl.go
@@ -3,8 +3,8 @@ package copyurl
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/cryptcheck/cryptcheck.go b/cmd/cryptcheck/cryptcheck.go
index 66e0a95ce..ae2dc402c 100644
--- a/cmd/cryptcheck/cryptcheck.go
+++ b/cmd/cryptcheck/cryptcheck.go
@@ -3,12 +3,12 @@ package cryptcheck
import (
"context"
- "github.com/ncw/rclone/backend/crypt"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/crypt"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/cryptdecode/cryptdecode.go b/cmd/cryptdecode/cryptdecode.go
index b2a02b1ed..6a2c7fd5f 100644
--- a/cmd/cryptdecode/cryptdecode.go
+++ b/cmd/cryptdecode/cryptdecode.go
@@ -4,10 +4,10 @@ import (
"errors"
"fmt"
- "github.com/ncw/rclone/backend/crypt"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/flags"
+ "github.com/rclone/rclone/backend/crypt"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/flags"
"github.com/spf13/cobra"
)
diff --git a/cmd/dbhashsum/dbhashsum.go b/cmd/dbhashsum/dbhashsum.go
index a1835c097..f83313861 100644
--- a/cmd/dbhashsum/dbhashsum.go
+++ b/cmd/dbhashsum/dbhashsum.go
@@ -4,8 +4,8 @@ import (
"context"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/dedupe/dedupe.go b/cmd/dedupe/dedupe.go
index cdce24e21..28623a557 100644
--- a/cmd/dedupe/dedupe.go
+++ b/cmd/dedupe/dedupe.go
@@ -4,8 +4,8 @@ import (
"context"
"log"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/delete/delete.go b/cmd/delete/delete.go
index 1966d3a5f..e7ec3f2fa 100644
--- a/cmd/delete/delete.go
+++ b/cmd/delete/delete.go
@@ -3,8 +3,8 @@ package delete
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/deletefile/deletefile.go b/cmd/deletefile/deletefile.go
index 710a69891..b03f5a7c0 100644
--- a/cmd/deletefile/deletefile.go
+++ b/cmd/deletefile/deletefile.go
@@ -3,9 +3,9 @@ package deletefile
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/genautocomplete/genautocomplete.go b/cmd/genautocomplete/genautocomplete.go
index d346c74fc..760d17dc0 100644
--- a/cmd/genautocomplete/genautocomplete.go
+++ b/cmd/genautocomplete/genautocomplete.go
@@ -1,7 +1,7 @@
package genautocomplete
import (
- "github.com/ncw/rclone/cmd"
+ "github.com/rclone/rclone/cmd"
"github.com/spf13/cobra"
)
diff --git a/cmd/genautocomplete/genautocomplete_bash.go b/cmd/genautocomplete/genautocomplete_bash.go
index 11de54e77..63660e283 100644
--- a/cmd/genautocomplete/genautocomplete_bash.go
+++ b/cmd/genautocomplete/genautocomplete_bash.go
@@ -3,7 +3,7 @@ package genautocomplete
import (
"log"
- "github.com/ncw/rclone/cmd"
+ "github.com/rclone/rclone/cmd"
"github.com/spf13/cobra"
)
diff --git a/cmd/genautocomplete/genautocomplete_zsh.go b/cmd/genautocomplete/genautocomplete_zsh.go
index 1a1f04dfe..0d635506d 100644
--- a/cmd/genautocomplete/genautocomplete_zsh.go
+++ b/cmd/genautocomplete/genautocomplete_zsh.go
@@ -4,7 +4,7 @@ import (
"log"
"os"
- "github.com/ncw/rclone/cmd"
+ "github.com/rclone/rclone/cmd"
"github.com/spf13/cobra"
)
diff --git a/cmd/gendocs/gendocs.go b/cmd/gendocs/gendocs.go
index e9071ea92..4bfcd2c13 100644
--- a/cmd/gendocs/gendocs.go
+++ b/cmd/gendocs/gendocs.go
@@ -10,7 +10,7 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/cmd"
+ "github.com/rclone/rclone/cmd"
"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
"github.com/spf13/pflag"
diff --git a/cmd/hashsum/hashsum.go b/cmd/hashsum/hashsum.go
index a2fb3ed2f..91e260472 100644
--- a/cmd/hashsum/hashsum.go
+++ b/cmd/hashsum/hashsum.go
@@ -6,9 +6,9 @@ import (
"fmt"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/help.go b/cmd/help.go
index 17d0c120b..04e42d640 100644
--- a/cmd/help.go
+++ b/cmd/help.go
@@ -7,11 +7,11 @@ import (
"regexp"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configflags"
- "github.com/ncw/rclone/fs/filter/filterflags"
- "github.com/ncw/rclone/fs/rc/rcflags"
- "github.com/ncw/rclone/lib/atexit"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configflags"
+ "github.com/rclone/rclone/fs/filter/filterflags"
+ "github.com/rclone/rclone/fs/rc/rcflags"
+ "github.com/rclone/rclone/lib/atexit"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
diff --git a/cmd/info/info.go b/cmd/info/info.go
index aa7794320..70b908007 100644
--- a/cmd/info/info.go
+++ b/cmd/info/info.go
@@ -13,12 +13,12 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/object"
- "github.com/ncw/rclone/fstest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/object"
+ "github.com/rclone/rclone/fstest"
"github.com/spf13/cobra"
)
diff --git a/cmd/info/test.sh b/cmd/info/test.sh
index 3c27a4cf2..a78b6b68f 100755
--- a/cmd/info/test.sh
+++ b/cmd/info/test.sh
@@ -1,10 +1,10 @@
#!/usr/bin/env zsh
#
# example usage:
-# $GOPATH/src/github.com/ncw/rclone/cmd/info/test.sh --list | \
-# parallel -P20 $GOPATH/src/github.com/ncw/rclone/cmd/info/test.sh
+# $GOPATH/src/github.com/rclone/rclone/cmd/info/test.sh --list | \
+# parallel -P20 $GOPATH/src/github.com/rclone/rclone/cmd/info/test.sh
-export PATH=$GOPATH/src/github.com/ncw/rclone:$PATH
+export PATH=$GOPATH/src/github.com/rclone/rclone:$PATH
typeset -A allRemotes
allRemotes=(
@@ -40,4 +40,4 @@ for remote; do
rclone purge $dir || :
rclone info -vv $dir ${=allRemotes[$remote]} &> info-$remote.log
rclone ls -vv $dir &> info-$remote.list
-done
\ No newline at end of file
+done
diff --git a/cmd/link/link.go b/cmd/link/link.go
index ba9b22723..0f1447fc3 100644
--- a/cmd/link/link.go
+++ b/cmd/link/link.go
@@ -4,8 +4,8 @@ import (
"context"
"fmt"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/listremotes/listremotes.go b/cmd/listremotes/listremotes.go
index c62880454..739ed78ba 100644
--- a/cmd/listremotes/listremotes.go
+++ b/cmd/listremotes/listremotes.go
@@ -4,8 +4,8 @@ import (
"fmt"
"sort"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/config"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/config"
"github.com/spf13/cobra"
)
diff --git a/cmd/ls/ls.go b/cmd/ls/ls.go
index 6e183ee44..9a5164aff 100644
--- a/cmd/ls/ls.go
+++ b/cmd/ls/ls.go
@@ -4,9 +4,9 @@ import (
"context"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/ls/lshelp"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/ls/lshelp"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/lsd/lsd.go b/cmd/lsd/lsd.go
index 7c9e8e8dc..9b540fb8d 100644
--- a/cmd/lsd/lsd.go
+++ b/cmd/lsd/lsd.go
@@ -4,10 +4,10 @@ import (
"context"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/ls/lshelp"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/ls/lshelp"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/lsf/lsf.go b/cmd/lsf/lsf.go
index bb09cd67a..1284f785c 100644
--- a/cmd/lsf/lsf.go
+++ b/cmd/lsf/lsf.go
@@ -6,12 +6,12 @@ import (
"io"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/ls/lshelp"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "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"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/lsf/lsf_test.go b/cmd/lsf/lsf_test.go
index d663e15c4..1b2ef0d97 100644
--- a/cmd/lsf/lsf_test.go
+++ b/cmd/lsf/lsf_test.go
@@ -5,10 +5,10 @@ import (
"context"
"testing"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/list"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/list"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/lsjson/lsjson.go b/cmd/lsjson/lsjson.go
index 158593615..c07dd51c6 100644
--- a/cmd/lsjson/lsjson.go
+++ b/cmd/lsjson/lsjson.go
@@ -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"
)
diff --git a/cmd/lsl/lsl.go b/cmd/lsl/lsl.go
index b945209e1..0b6eea948 100644
--- a/cmd/lsl/lsl.go
+++ b/cmd/lsl/lsl.go
@@ -4,9 +4,9 @@ import (
"context"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/ls/lshelp"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/ls/lshelp"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/md5sum/md5sum.go b/cmd/md5sum/md5sum.go
index dd585b929..07b5e43f7 100644
--- a/cmd/md5sum/md5sum.go
+++ b/cmd/md5sum/md5sum.go
@@ -4,8 +4,8 @@ import (
"context"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/memtest/memtest.go b/cmd/memtest/memtest.go
index fa69abb1f..7d3068f46 100644
--- a/cmd/memtest/memtest.go
+++ b/cmd/memtest/memtest.go
@@ -5,9 +5,9 @@ import (
"runtime"
"sync"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/mkdir/mkdir.go b/cmd/mkdir/mkdir.go
index 5887fa2df..0c48b609a 100644
--- a/cmd/mkdir/mkdir.go
+++ b/cmd/mkdir/mkdir.go
@@ -3,8 +3,8 @@ package mkdir
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/mount/dir.go b/cmd/mount/dir.go
index 1075cd0c5..d6c1c1869 100644
--- a/cmd/mount/dir.go
+++ b/cmd/mount/dir.go
@@ -9,10 +9,10 @@ import (
"bazil.org/fuse"
fusefs "bazil.org/fuse/fs"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/vfs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/vfs"
)
// Dir represents a directory entry
diff --git a/cmd/mount/file.go b/cmd/mount/file.go
index 133f51175..843d5fff1 100644
--- a/cmd/mount/file.go
+++ b/cmd/mount/file.go
@@ -9,9 +9,9 @@ import (
"bazil.org/fuse"
fusefs "bazil.org/fuse/fs"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/vfs"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/vfs"
)
// File represents a file
diff --git a/cmd/mount/fs.go b/cmd/mount/fs.go
index b0237605d..e1a44d61b 100644
--- a/cmd/mount/fs.go
+++ b/cmd/mount/fs.go
@@ -10,12 +10,12 @@ import (
"bazil.org/fuse"
fusefs "bazil.org/fuse/fs"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
)
// FS represents the top level filing system
diff --git a/cmd/mount/handle.go b/cmd/mount/handle.go
index 2c049abc9..28bcb921f 100644
--- a/cmd/mount/handle.go
+++ b/cmd/mount/handle.go
@@ -8,8 +8,8 @@ import (
"bazil.org/fuse"
fusefs "bazil.org/fuse/fs"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/vfs"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/vfs"
)
// FileHandle is an open for read file handle on a File
diff --git a/cmd/mount/mount.go b/cmd/mount/mount.go
index 9240c66d2..414252d17 100644
--- a/cmd/mount/mount.go
+++ b/cmd/mount/mount.go
@@ -12,13 +12,13 @@ import (
"bazil.org/fuse"
fusefs "bazil.org/fuse/fs"
- "github.com/ncw/rclone/cmd/mountlib"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/lib/atexit"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
"github.com/okzk/sdnotify"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/mountlib"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/lib/atexit"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
)
func init() {
diff --git a/cmd/mount/mount_test.go b/cmd/mount/mount_test.go
index 51ec05d3b..ac1f8913f 100644
--- a/cmd/mount/mount_test.go
+++ b/cmd/mount/mount_test.go
@@ -5,7 +5,7 @@ package mount
import (
"testing"
- "github.com/ncw/rclone/cmd/mountlib/mounttest"
+ "github.com/rclone/rclone/cmd/mountlib/mounttest"
)
func TestMount(t *testing.T) {
diff --git a/cmd/mountlib/mount.go b/cmd/mountlib/mount.go
index 35d1d6a24..f5dda8eb3 100644
--- a/cmd/mountlib/mount.go
+++ b/cmd/mountlib/mount.go
@@ -9,13 +9,13 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"github.com/spf13/cobra"
)
@@ -190,9 +190,9 @@ too many callbacks to rclone from the kernel.
In theory 0s should be the correct value for filesystems which can
change outside the control of the kernel. However this causes quite a
few problems such as
-[rclone using too much memory](https://github.com/ncw/rclone/issues/2157),
+[rclone using too much memory](https://github.com/rclone/rclone/issues/2157),
[rclone not serving files to samba](https://forum.rclone.org/t/rclone-1-39-vs-1-40-mount-issue/5112)
-and [excessive time listing directories](https://github.com/ncw/rclone/issues/2095#issuecomment-371141147).
+and [excessive time listing directories](https://github.com/rclone/rclone/issues/2095#issuecomment-371141147).
The kernel can cache the info about a file for the time given by
"--attr-timeout". You may see corruption if the remote file changes
diff --git a/cmd/mountlib/mounttest/dir.go b/cmd/mountlib/mounttest/dir.go
index 1ccb363d0..4645aa53d 100644
--- a/cmd/mountlib/mounttest/dir.go
+++ b/cmd/mountlib/mounttest/dir.go
@@ -6,7 +6,7 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/mountlib/mounttest/edge_cases.go b/cmd/mountlib/mounttest/edge_cases.go
index 2111f9fe6..96bbffa34 100644
--- a/cmd/mountlib/mounttest/edge_cases.go
+++ b/cmd/mountlib/mounttest/edge_cases.go
@@ -9,7 +9,7 @@ import (
)
// TestTouchAndDelete checks that writing a zero byte file and immediately
-// deleting it is not racy. See https://github.com/ncw/rclone/issues/1181
+// deleting it is not racy. See https://github.com/rclone/rclone/issues/1181
func TestTouchAndDelete(t *testing.T) {
run.skipIfNoFUSE(t)
run.checkDir(t, "")
@@ -21,7 +21,7 @@ func TestTouchAndDelete(t *testing.T) {
}
// TestRenameOpenHandle checks that a file with open writers is successfully
-// renamed after all writers close. See https://github.com/ncw/rclone/issues/2130
+// renamed after all writers close. See https://github.com/rclone/rclone/issues/2130
func TestRenameOpenHandle(t *testing.T) {
run.skipIfNoFUSE(t)
if runtime.GOOS == "windows" {
diff --git a/cmd/mountlib/mounttest/fs.go b/cmd/mountlib/mounttest/fs.go
index e289a0099..55df6f373 100644
--- a/cmd/mountlib/mounttest/fs.go
+++ b/cmd/mountlib/mounttest/fs.go
@@ -18,11 +18,11 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/all" // import all the backends
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/fstest"
- "github.com/ncw/rclone/vfs"
+ _ "github.com/rclone/rclone/backend/all" // import all the backends
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/fstest"
+ "github.com/rclone/rclone/vfs"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/move/move.go b/cmd/move/move.go
index a74027608..c9947a852 100644
--- a/cmd/move/move.go
+++ b/cmd/move/move.go
@@ -3,9 +3,9 @@ package move
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/sync"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/sync"
"github.com/spf13/cobra"
)
diff --git a/cmd/moveto/moveto.go b/cmd/moveto/moveto.go
index dbcfc5524..c46f3c519 100644
--- a/cmd/moveto/moveto.go
+++ b/cmd/moveto/moveto.go
@@ -3,9 +3,9 @@ package moveto
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/sync"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/sync"
"github.com/spf13/cobra"
)
diff --git a/cmd/ncdu/ncdu.go b/cmd/ncdu/ncdu.go
index 7af7aabf0..1b7f32465 100644
--- a/cmd/ncdu/ncdu.go
+++ b/cmd/ncdu/ncdu.go
@@ -14,12 +14,12 @@ import (
"github.com/atotto/clipboard"
runewidth "github.com/mattn/go-runewidth"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/ncdu/scan"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/operations"
termbox "github.com/nsf/termbox-go"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/ncdu/scan"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/ncdu/scan/scan.go b/cmd/ncdu/scan/scan.go
index e6a9c20c8..b5b949a69 100644
--- a/cmd/ncdu/scan/scan.go
+++ b/cmd/ncdu/scan/scan.go
@@ -6,9 +6,9 @@ import (
"path"
"sync"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/walk"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/walk"
)
// Dir represents a directory found in the remote
diff --git a/cmd/obscure/obscure.go b/cmd/obscure/obscure.go
index 1b07ce2c5..5e0891686 100644
--- a/cmd/obscure/obscure.go
+++ b/cmd/obscure/obscure.go
@@ -3,8 +3,8 @@ package obscure
import (
"fmt"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/config/obscure"
"github.com/spf13/cobra"
)
diff --git a/cmd/progress.go b/cmd/progress.go
index c08e126b6..0ea44501a 100644
--- a/cmd/progress.go
+++ b/cmd/progress.go
@@ -10,9 +10,9 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/log"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/log"
"golang.org/x/crypto/ssh/terminal"
)
diff --git a/cmd/purge/purge.go b/cmd/purge/purge.go
index 0dd310f6f..47327821d 100644
--- a/cmd/purge/purge.go
+++ b/cmd/purge/purge.go
@@ -3,8 +3,8 @@ package purge
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/rc/rc.go b/cmd/rc/rc.go
index b0598934c..c776e7984 100644
--- a/cmd/rc/rc.go
+++ b/cmd/rc/rc.go
@@ -10,11 +10,11 @@ import (
"os"
"strings"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/rc"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/rc"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
diff --git a/cmd/rcat/rcat.go b/cmd/rcat/rcat.go
index 3177e329e..c33aeda74 100644
--- a/cmd/rcat/rcat.go
+++ b/cmd/rcat/rcat.go
@@ -6,8 +6,8 @@ import (
"os"
"time"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/rcd/rcd.go b/cmd/rcd/rcd.go
index 08223d47c..771f19b5c 100644
--- a/cmd/rcd/rcd.go
+++ b/cmd/rcd/rcd.go
@@ -3,9 +3,9 @@ package rcd
import (
"log"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/rc/rcflags"
- "github.com/ncw/rclone/fs/rc/rcserver"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/rc/rcflags"
+ "github.com/rclone/rclone/fs/rc/rcserver"
"github.com/spf13/cobra"
)
diff --git a/cmd/reveal/reveal.go b/cmd/reveal/reveal.go
index 9b0b651ac..aebd7c0d4 100644
--- a/cmd/reveal/reveal.go
+++ b/cmd/reveal/reveal.go
@@ -3,8 +3,8 @@ package reveal
import (
"fmt"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/config/obscure"
"github.com/spf13/cobra"
)
diff --git a/cmd/rmdir/rmdir.go b/cmd/rmdir/rmdir.go
index c66303081..c9ec1f607 100644
--- a/cmd/rmdir/rmdir.go
+++ b/cmd/rmdir/rmdir.go
@@ -3,8 +3,8 @@ package rmdir
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/rmdirs/rmdirs.go b/cmd/rmdirs/rmdirs.go
index f02e9bb19..7b8d2d760 100644
--- a/cmd/rmdirs/rmdirs.go
+++ b/cmd/rmdirs/rmdirs.go
@@ -3,8 +3,8 @@ package rmdir
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/serve/dlna/cds.go b/cmd/serve/dlna/cds.go
index 56be89dfb..f5a2d45cb 100644
--- a/cmd/serve/dlna/cds.go
+++ b/cmd/serve/dlna/cds.go
@@ -15,9 +15,9 @@ import (
"github.com/anacrolix/dms/dlna"
"github.com/anacrolix/dms/upnp"
"github.com/anacrolix/dms/upnpav"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/vfs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/vfs"
)
type contentDirectoryService struct {
diff --git a/cmd/serve/dlna/dlna.go b/cmd/serve/dlna/dlna.go
index ef8663a16..02b37277f 100644
--- a/cmd/serve/dlna/dlna.go
+++ b/cmd/serve/dlna/dlna.go
@@ -17,12 +17,12 @@ import (
"github.com/anacrolix/dms/soap"
"github.com/anacrolix/dms/ssdp"
"github.com/anacrolix/dms/upnp"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/dlna/data"
- "github.com/ncw/rclone/cmd/serve/dlna/dlnaflags"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/dlna/data"
+ "github.com/rclone/rclone/cmd/serve/dlna/dlnaflags"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"github.com/spf13/cobra"
)
diff --git a/cmd/serve/dlna/dlna_test.go b/cmd/serve/dlna/dlna_test.go
index 5dd399eea..157f8c19e 100644
--- a/cmd/serve/dlna/dlna_test.go
+++ b/cmd/serve/dlna/dlna_test.go
@@ -9,12 +9,12 @@ import (
"os"
"testing"
- "github.com/ncw/rclone/vfs"
+ "github.com/rclone/rclone/vfs"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/cmd/serve/dlna/dlnaflags"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/cmd/serve/dlna/dlnaflags"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/serve/dlna/dlna_util.go b/cmd/serve/dlna/dlna_util.go
index 6952e3dcb..b5d2b4127 100644
--- a/cmd/serve/dlna/dlna_util.go
+++ b/cmd/serve/dlna/dlna_util.go
@@ -14,7 +14,7 @@ import (
"github.com/anacrolix/dms/soap"
"github.com/anacrolix/dms/upnp"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// Return a default "friendly name" for the server.
diff --git a/cmd/serve/dlna/dlnaflags/dlnaflags.go b/cmd/serve/dlna/dlnaflags/dlnaflags.go
index dd8ce518c..215832e2b 100644
--- a/cmd/serve/dlna/dlnaflags/dlnaflags.go
+++ b/cmd/serve/dlna/dlnaflags/dlnaflags.go
@@ -1,8 +1,8 @@
package dlnaflags
import (
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/rc"
"github.com/spf13/pflag"
)
diff --git a/cmd/serve/ftp/ftp.go b/cmd/serve/ftp/ftp.go
index 8202cfe89..c7de78a5b 100644
--- a/cmd/serve/ftp/ftp.go
+++ b/cmd/serve/ftp/ftp.go
@@ -15,14 +15,14 @@ import (
"sync"
ftp "github.com/goftp/server"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/ftp/ftpflags"
- "github.com/ncw/rclone/cmd/serve/ftp/ftpopt"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/ftp/ftpflags"
+ "github.com/rclone/rclone/cmd/serve/ftp/ftpopt"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"github.com/spf13/cobra"
)
diff --git a/cmd/serve/ftp/ftp_test.go b/cmd/serve/ftp/ftp_test.go
index a554f1ddf..d424548c2 100644
--- a/cmd/serve/ftp/ftp_test.go
+++ b/cmd/serve/ftp/ftp_test.go
@@ -15,9 +15,9 @@ import (
"testing"
ftp "github.com/goftp/server"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/cmd/serve/ftp/ftpopt"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/cmd/serve/ftp/ftpopt"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
)
diff --git a/cmd/serve/ftp/ftpflags/ftpflags.go b/cmd/serve/ftp/ftpflags/ftpflags.go
index 65b5ead6a..9ef62b1c9 100644
--- a/cmd/serve/ftp/ftpflags/ftpflags.go
+++ b/cmd/serve/ftp/ftpflags/ftpflags.go
@@ -1,9 +1,9 @@
package ftpflags
import (
- "github.com/ncw/rclone/cmd/serve/ftp/ftpopt"
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/cmd/serve/ftp/ftpopt"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/rc"
"github.com/spf13/pflag"
)
diff --git a/cmd/serve/http/http.go b/cmd/serve/http/http.go
index 3c85efad8..2cce22a91 100644
--- a/cmd/serve/http/http.go
+++ b/cmd/serve/http/http.go
@@ -7,14 +7,14 @@ import (
"strconv"
"strings"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/cmd/serve/httplib/httpflags"
- "github.com/ncw/rclone/cmd/serve/httplib/serve"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/cmd/serve/httplib/httpflags"
+ "github.com/rclone/rclone/cmd/serve/httplib/serve"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"github.com/spf13/cobra"
)
diff --git a/cmd/serve/http/http_test.go b/cmd/serve/http/http_test.go
index e43aeed3b..6ab8db584 100644
--- a/cmd/serve/http/http_test.go
+++ b/cmd/serve/http/http_test.go
@@ -8,11 +8,11 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/filter"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/filter"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/serve/httplib/httpflags/httpflags.go b/cmd/serve/httplib/httpflags/httpflags.go
index 9e04312b5..05c98fe50 100644
--- a/cmd/serve/httplib/httpflags/httpflags.go
+++ b/cmd/serve/httplib/httpflags/httpflags.go
@@ -1,9 +1,9 @@
package httpflags
import (
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/rc"
"github.com/spf13/pflag"
)
diff --git a/cmd/serve/httplib/httplib.go b/cmd/serve/httplib/httplib.go
index fc8393386..fd5beb9e0 100644
--- a/cmd/serve/httplib/httplib.go
+++ b/cmd/serve/httplib/httplib.go
@@ -16,9 +16,9 @@ import (
"time"
auth "github.com/abbot/go-http-auth"
- "github.com/ncw/rclone/cmd/serve/httplib/serve/data"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/serve/httplib/serve/data"
+ "github.com/rclone/rclone/fs"
)
// Globals
diff --git a/cmd/serve/httplib/serve/data/data.go b/cmd/serve/httplib/serve/data/data.go
index a470ee0f6..d34fb2963 100644
--- a/cmd/serve/httplib/serve/data/data.go
+++ b/cmd/serve/httplib/serve/data/data.go
@@ -7,8 +7,8 @@ import (
"html/template"
"io/ioutil"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
)
// GetTemplate returns the HTML template for serving directories via HTTP
diff --git a/cmd/serve/httplib/serve/dir.go b/cmd/serve/httplib/serve/dir.go
index 3d952e83e..02ee5e8e7 100644
--- a/cmd/serve/httplib/serve/dir.go
+++ b/cmd/serve/httplib/serve/dir.go
@@ -7,9 +7,9 @@ import (
"net/url"
"path"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/lib/rest"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/lib/rest"
)
// DirEntry is a directory entry
diff --git a/cmd/serve/httplib/serve/dir_test.go b/cmd/serve/httplib/serve/dir_test.go
index 37c3ce0e6..87a8fbd07 100644
--- a/cmd/serve/httplib/serve/dir_test.go
+++ b/cmd/serve/httplib/serve/dir_test.go
@@ -9,7 +9,7 @@ import (
"net/url"
"testing"
- "github.com/ncw/rclone/cmd/serve/httplib/serve/data"
+ "github.com/rclone/rclone/cmd/serve/httplib/serve/data"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/serve/httplib/serve/serve.go b/cmd/serve/httplib/serve/serve.go
index 425a3209d..89c4f696d 100644
--- a/cmd/serve/httplib/serve/serve.go
+++ b/cmd/serve/httplib/serve/serve.go
@@ -8,8 +8,8 @@ import (
"path"
"strconv"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
)
// Object serves an fs.Object via HEAD or GET
diff --git a/cmd/serve/httplib/serve/serve_test.go b/cmd/serve/httplib/serve/serve_test.go
index b190ed66c..934fabe65 100644
--- a/cmd/serve/httplib/serve/serve_test.go
+++ b/cmd/serve/httplib/serve/serve_test.go
@@ -6,7 +6,7 @@ import (
"net/http/httptest"
"testing"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
)
diff --git a/cmd/serve/restic/restic.go b/cmd/serve/restic/restic.go
index 7f307de44..39454288f 100644
--- a/cmd/serve/restic/restic.go
+++ b/cmd/serve/restic/restic.go
@@ -14,15 +14,15 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/cmd/serve/httplib/httpflags"
- "github.com/ncw/rclone/cmd/serve/httplib/serve"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/walk"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/cmd/serve/httplib/httpflags"
+ "github.com/rclone/rclone/cmd/serve/httplib/serve"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/walk"
"github.com/spf13/cobra"
"golang.org/x/crypto/ssh/terminal"
"golang.org/x/net/http2"
diff --git a/cmd/serve/restic/restic_appendonly_test.go b/cmd/serve/restic/restic_appendonly_test.go
index a45aa4e5f..90256a53c 100644
--- a/cmd/serve/restic/restic_appendonly_test.go
+++ b/cmd/serve/restic/restic_appendonly_test.go
@@ -12,8 +12,8 @@ import (
"strings"
"testing"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/httplib/httpflags"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/httplib/httpflags"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/serve/restic/restic_privaterepos_test.go b/cmd/serve/restic/restic_privaterepos_test.go
index 5ca677a8b..a04e737ae 100644
--- a/cmd/serve/restic/restic_privaterepos_test.go
+++ b/cmd/serve/restic/restic_privaterepos_test.go
@@ -12,10 +12,10 @@ import (
"strings"
"testing"
- "github.com/ncw/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/httplib/httpflags"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/httplib/httpflags"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/serve/restic/restic_test.go b/cmd/serve/restic/restic_test.go
index 26949238b..4139535c2 100644
--- a/cmd/serve/restic/restic_test.go
+++ b/cmd/serve/restic/restic_test.go
@@ -11,9 +11,9 @@ import (
"os/exec"
"testing"
- _ "github.com/ncw/rclone/backend/all"
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/all"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
)
diff --git a/cmd/serve/serve.go b/cmd/serve/serve.go
index 79b2e1a59..24a1f832c 100644
--- a/cmd/serve/serve.go
+++ b/cmd/serve/serve.go
@@ -3,13 +3,13 @@ package serve
import (
"errors"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/dlna"
- "github.com/ncw/rclone/cmd/serve/ftp"
- "github.com/ncw/rclone/cmd/serve/http"
- "github.com/ncw/rclone/cmd/serve/restic"
- "github.com/ncw/rclone/cmd/serve/sftp"
- "github.com/ncw/rclone/cmd/serve/webdav"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/dlna"
+ "github.com/rclone/rclone/cmd/serve/ftp"
+ "github.com/rclone/rclone/cmd/serve/http"
+ "github.com/rclone/rclone/cmd/serve/restic"
+ "github.com/rclone/rclone/cmd/serve/sftp"
+ "github.com/rclone/rclone/cmd/serve/webdav"
"github.com/spf13/cobra"
)
diff --git a/cmd/serve/sftp/connection.go b/cmd/serve/sftp/connection.go
index 6943618a5..806787d36 100644
--- a/cmd/serve/sftp/connection.go
+++ b/cmd/serve/sftp/connection.go
@@ -10,11 +10,11 @@ import (
"regexp"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/vfs"
"github.com/pkg/errors"
"github.com/pkg/sftp"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/vfs"
"golang.org/x/crypto/ssh"
)
diff --git a/cmd/serve/sftp/handler.go b/cmd/serve/sftp/handler.go
index 30d6720fe..bd4c6e00b 100644
--- a/cmd/serve/sftp/handler.go
+++ b/cmd/serve/sftp/handler.go
@@ -8,9 +8,9 @@ import (
"syscall"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/vfs"
"github.com/pkg/sftp"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/vfs"
)
// vfsHandler converts the VFS to be served by SFTP
diff --git a/cmd/serve/sftp/server.go b/cmd/serve/sftp/server.go
index 7407489de..0d6778016 100644
--- a/cmd/serve/sftp/server.go
+++ b/cmd/serve/sftp/server.go
@@ -17,13 +17,13 @@ import (
"path/filepath"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/lib/env"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
"github.com/pkg/errors"
"github.com/pkg/sftp"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/lib/env"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"golang.org/x/crypto/ssh"
)
diff --git a/cmd/serve/sftp/sftp.go b/cmd/serve/sftp/sftp.go
index c594faafb..bbd4a4f59 100644
--- a/cmd/serve/sftp/sftp.go
+++ b/cmd/serve/sftp/sftp.go
@@ -5,11 +5,11 @@
package sftp
import (
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/rc"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/rc"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
diff --git a/cmd/serve/sftp/sftp_test.go b/cmd/serve/sftp/sftp_test.go
index 08094e916..21661756c 100644
--- a/cmd/serve/sftp/sftp_test.go
+++ b/cmd/serve/sftp/sftp_test.go
@@ -14,10 +14,10 @@ import (
"strings"
"testing"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fstest"
"github.com/pkg/sftp"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
)
diff --git a/cmd/serve/webdav/webdav.go b/cmd/serve/webdav/webdav.go
index e1010a073..1790d4a5f 100644
--- a/cmd/serve/webdav/webdav.go
+++ b/cmd/serve/webdav/webdav.go
@@ -8,15 +8,15 @@ import (
"os"
"strings"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/cmd/serve/httplib/httpflags"
- "github.com/ncw/rclone/cmd/serve/httplib/serve"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/vfs"
- "github.com/ncw/rclone/vfs/vfsflags"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/cmd/serve/httplib/httpflags"
+ "github.com/rclone/rclone/cmd/serve/httplib/serve"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/vfs"
+ "github.com/rclone/rclone/vfs/vfsflags"
"github.com/spf13/cobra"
"golang.org/x/net/webdav"
)
diff --git a/cmd/serve/webdav/webdav_test.go b/cmd/serve/webdav/webdav_test.go
index d18b63c84..33193085e 100644
--- a/cmd/serve/webdav/webdav_test.go
+++ b/cmd/serve/webdav/webdav_test.go
@@ -18,11 +18,11 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/net/webdav"
diff --git a/cmd/settier/settier.go b/cmd/settier/settier.go
index 447f7b374..19f6601b7 100644
--- a/cmd/settier/settier.go
+++ b/cmd/settier/settier.go
@@ -3,9 +3,9 @@ package settier
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/sha1sum/sha1sum.go b/cmd/sha1sum/sha1sum.go
index 953af208c..72cc8c5c5 100644
--- a/cmd/sha1sum/sha1sum.go
+++ b/cmd/sha1sum/sha1sum.go
@@ -4,8 +4,8 @@ import (
"context"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/siginfo_darwin.go b/cmd/siginfo_darwin.go
index 27e6c58de..384b6d7a8 100644
--- a/cmd/siginfo_darwin.go
+++ b/cmd/siginfo_darwin.go
@@ -8,7 +8,7 @@ import (
"os/signal"
"syscall"
- "github.com/ncw/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/accounting"
)
// SigInfoHandler creates SigInfo handler
diff --git a/cmd/size/size.go b/cmd/size/size.go
index c17b273d4..cffeced31 100644
--- a/cmd/size/size.go
+++ b/cmd/size/size.go
@@ -6,9 +6,9 @@ import (
"fmt"
"os"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
diff --git a/cmd/sync/sync.go b/cmd/sync/sync.go
index aef4bd43d..2915ee031 100644
--- a/cmd/sync/sync.go
+++ b/cmd/sync/sync.go
@@ -3,9 +3,9 @@ package sync
import (
"context"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/sync"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/sync"
"github.com/spf13/cobra"
)
diff --git a/cmd/touch/touch.go b/cmd/touch/touch.go
index 075a389e2..9855817f8 100644
--- a/cmd/touch/touch.go
+++ b/cmd/touch/touch.go
@@ -5,10 +5,10 @@ import (
"context"
"time"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/object"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/object"
"github.com/spf13/cobra"
)
diff --git a/cmd/touch/touch_test.go b/cmd/touch/touch_test.go
index eda6b5c09..35d73bcfa 100644
--- a/cmd/touch/touch_test.go
+++ b/cmd/touch/touch_test.go
@@ -5,9 +5,9 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/tree/tree.go b/cmd/tree/tree.go
index e93f5f125..dc3935ae3 100644
--- a/cmd/tree/tree.go
+++ b/cmd/tree/tree.go
@@ -11,12 +11,12 @@ import (
"time"
"github.com/a8m/tree"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/dirtree"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/fs/walk"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/dirtree"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/fs/walk"
"github.com/spf13/cobra"
)
diff --git a/cmd/tree/tree_test.go b/cmd/tree/tree_test.go
index ff31aea10..5e1119fbf 100644
--- a/cmd/tree/tree_test.go
+++ b/cmd/tree/tree_test.go
@@ -5,9 +5,9 @@ import (
"testing"
"github.com/a8m/tree"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/cmd/version/version.go b/cmd/version/version.go
index efa2d298a..f30de5a62 100644
--- a/cmd/version/version.go
+++ b/cmd/version/version.go
@@ -7,10 +7,10 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/version"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/version"
"github.com/spf13/cobra"
)
diff --git a/cmd/version/version_test.go b/cmd/version/version_test.go
index 2a523d33c..1231169ff 100644
--- a/cmd/version/version_test.go
+++ b/cmd/version/version_test.go
@@ -6,8 +6,8 @@ import (
"runtime"
"testing"
- "github.com/ncw/rclone/cmd"
- "github.com/ncw/rclone/fs/config"
+ "github.com/rclone/rclone/cmd"
+ "github.com/rclone/rclone/fs/config"
"github.com/stretchr/testify/assert"
)
diff --git a/docs/content/about.md b/docs/content/about.md
index 5f90ea616..316fa8ce3 100644
--- a/docs/content/about.md
+++ b/docs/content/about.md
@@ -74,6 +74,6 @@ Features
Links
* [Home page](https://rclone.org/)
- * [GitHub project page for source and bug tracker](https://github.com/ncw/rclone)
+ * [GitHub project page for source and bug tracker](https://github.com/rclone/rclone)
* [Rclone Forum](https://forum.rclone.org)
* [Downloads](/downloads/)
diff --git a/docs/content/b2.md b/docs/content/b2.md
index b32496219..7275ccb2b 100644
--- a/docs/content/b2.md
+++ b/docs/content/b2.md
@@ -145,7 +145,7 @@ support SHA1.
Sources which don't support SHA1, in particular `crypt` will upload
large files without SHA1 checksums. This may be fixed in the future
-(see [#1767](https://github.com/ncw/rclone/issues/1767)).
+(see [#1767](https://github.com/rclone/rclone/issues/1767)).
Files sizes below `--b2-upload-cutoff` will always have an SHA1
regardless of the source.
@@ -178,7 +178,7 @@ Old versions of files, where available, are visible using the
`--b2-versions` flag.
**NB** Note that `--b2-versions` does not work with crypt at the
-moment [#1627](https://github.com/ncw/rclone/issues/1627). Using
+moment [#1627](https://github.com/rclone/rclone/issues/1627). Using
[--backup-dir](/docs/#backup-dir-dir) with rclone is the recommended
way of working around this.
@@ -250,7 +250,7 @@ All copy commands send the following 4 requests:
The `b2_list_file_names` request will be sent once for every 1k files
in the remote path, providing the checksum and modification time of
the listed files. As of version 1.33 issue
-[#818](https://github.com/ncw/rclone/issues/818) causes extra requests
+[#818](https://github.com/rclone/rclone/issues/818) causes extra requests
to be sent when using B2 with Crypt. When a copy operation does not
require any files to be uploaded, no more requests will be sent.
diff --git a/docs/content/bugs.md b/docs/content/bugs.md
index 5297a8242..8929a69bc 100644
--- a/docs/content/bugs.md
+++ b/docs/content/bugs.md
@@ -22,7 +22,7 @@ You can work round this to some extent with the`purge` command which
will delete everything under the path, **inluding** empty directories.
This may be fixed at some point in
-[Issue #100](https://github.com/ncw/rclone/issues/100)
+[Issue #100](https://github.com/rclone/rclone/issues/100)
### Directory timestamps aren't preserved ##
diff --git a/docs/content/cache.md b/docs/content/cache.md
index 5c0900669..acd7efafc 100644
--- a/docs/content/cache.md
+++ b/docs/content/cache.md
@@ -226,9 +226,9 @@ on Linux flavors and Windows as cache is heavily dependant on them.
Any reports or feedback on how cache behaves on this OS is greatly appreciated.
-- https://github.com/ncw/rclone/issues/1935
-- https://github.com/ncw/rclone/issues/1907
-- https://github.com/ncw/rclone/issues/1834
+- https://github.com/rclone/rclone/issues/1935
+- https://github.com/rclone/rclone/issues/1907
+- https://github.com/rclone/rclone/issues/1834
#### Risk of throttling ####
@@ -247,8 +247,8 @@ of adding the file in the cache at the same time if configured to do so.
Future enhancements:
-- https://github.com/ncw/rclone/issues/1937
-- https://github.com/ncw/rclone/issues/1936
+- https://github.com/rclone/rclone/issues/1937
+- https://github.com/rclone/rclone/issues/1936
#### cache and crypt ####
diff --git a/docs/content/commands/rclone_mount.md b/docs/content/commands/rclone_mount.md
index 3a923fbbe..57fc34da3 100644
--- a/docs/content/commands/rclone_mount.md
+++ b/docs/content/commands/rclone_mount.md
@@ -103,9 +103,9 @@ too many callbacks to rclone from the kernel.
In theory 0s should be the correct value for filesystems which can
change outside the control of the kernel. However this causes quite a
few problems such as
-[rclone using too much memory](https://github.com/ncw/rclone/issues/2157),
+[rclone using too much memory](https://github.com/rclone/rclone/issues/2157),
[rclone not serving files to samba](https://forum.rclone.org/t/rclone-1-39-vs-1-40-mount-issue/5112)
-and [excessive time listing directories](https://github.com/ncw/rclone/issues/2095#issuecomment-371141147).
+and [excessive time listing directories](https://github.com/rclone/rclone/issues/2095#issuecomment-371141147).
The kernel can cache the info about a file for the time given by
"--attr-timeout". You may see corruption if the remote file changes
diff --git a/docs/content/contact.md b/docs/content/contact.md
index 314f61fb3..e4577dc50 100644
--- a/docs/content/contact.md
+++ b/docs/content/contact.md
@@ -16,7 +16,7 @@ Forum for questions and general discussion:
The project website is at:
- * https://github.com/ncw/rclone
+ * https://github.com/rclone/rclone
There you can file bug reports or contribute pull requests.
diff --git a/docs/content/docs.md b/docs/content/docs.md
index dd3358d85..3025452fb 100644
--- a/docs/content/docs.md
+++ b/docs/content/docs.md
@@ -223,7 +223,7 @@ If your names have spaces in you need to put them in `"`, eg
rclone copy "E:\folder name\folder name\folder name" remote:backup
If you are using the root directory on its own then don't quote it
-(see [#464](https://github.com/ncw/rclone/issues/464) for why), eg
+(see [#464](https://github.com/rclone/rclone/issues/464) for why), eg
rclone copy E:\ remote:backup
@@ -569,7 +569,7 @@ after transfer.
This can be useful for transferring files to and from OneDrive which
occasionally misreports the size of image files (see
-[#399](https://github.com/ncw/rclone/issues/399) for more info).
+[#399](https://github.com/rclone/rclone/issues/399) for more info).
### -I, --ignore-times ###
diff --git a/docs/content/downloads.md b/docs/content/downloads.md
index 9969fc3fc..3c67eda3f 100644
--- a/docs/content/downloads.md
+++ b/docs/content/downloads.md
@@ -17,7 +17,7 @@ Rclone Download {{< version >}}
| MIPS - Big Endian | - | - | {{< download linux mips >}} | {{< download linux mips deb >}} | {{< download linux mips rpm >}} | - | - | - | - | - |
| MIPS - Little Endian | - | - | {{< download linux mipsle >}} | {{< download linux mipsle deb >}} | {{< download linux mipsle rpm >}} | - | - | - | - | - |
-You can also find a [mirror of the downloads on github](https://github.com/ncw/rclone/releases/tag/{{< version >}}).
+You can also find a [mirror of the downloads on github](https://github.com/rclone/rclone/releases/tag/{{< version >}}).
## Script download and install ##
@@ -41,7 +41,7 @@ to master. Note these are named like
{Version Tag}-{Commit Number}-g{Git Commit Hash}
You can match the `Git Commit Hash` up with the [git
-log](https://github.com/ncw/rclone/commits/master). The most recent
+log](https://github.com/rclone/rclone/commits/master). The most recent
release will have the largest `Version Tag` and `Commit Number` and
will normally be at the end of the list.
diff --git a/docs/content/drive.md b/docs/content/drive.md
index c9052a224..a2c6434f9 100644
--- a/docs/content/drive.md
+++ b/docs/content/drive.md
@@ -748,7 +748,7 @@ export URLs for drive documents. Users have reported that the
official export URLs can't export large documents, whereas these
unofficial ones can.
-See rclone issue [#2243](https://github.com/ncw/rclone/issues/2243) for background,
+See rclone issue [#2243](https://github.com/rclone/rclone/issues/2243) for background,
[this google drive issue](https://issuetracker.google.com/issues/36761333) and
[this helpful post](https://www.labnol.org/internet/direct-links-for-google-drive/28356/).
diff --git a/docs/content/install.md b/docs/content/install.md
index 93674821c..768adefe4 100644
--- a/docs/content/install.md
+++ b/docs/content/install.md
@@ -87,7 +87,7 @@ Make sure you have at least [Go](https://golang.org/) 1.7
installed. [Download go](https://golang.org/dl/) if necessary. The
latest release is recommended. Then
- git clone https://github.com/ncw/rclone.git
+ git clone https://github.com/rclone/rclone.git
cd rclone
go build
./rclone version
@@ -96,11 +96,11 @@ You can also build and install rclone in the
[GOPATH](https://github.com/golang/go/wiki/GOPATH) (which defaults to
`~/go`) with:
- go get -u -v github.com/ncw/rclone
+ go get -u -v github.com/rclone/rclone
and this will build the binary in `$GOPATH/bin` (`~/go/bin/rclone` by
default) after downloading the source to
-`$GOPATH/src/github.com/ncw/rclone` (`~/go/src/github.com/ncw/rclone`
+`$GOPATH/src/github.com/rclone/rclone` (`~/go/src/github.com/rclone/rclone`
by default).
## Installation with Ansible ##
diff --git a/docs/content/local.md b/docs/content/local.md
index 5af34cffc..292147aad 100644
--- a/docs/content/local.md
+++ b/docs/content/local.md
@@ -52,7 +52,7 @@ converted to the UNC path `\\?\c:\files` in the output,
and `\\server\share` is converted to `\\?\UNC\server\share`.
However, in rare cases this may cause problems with buggy file
-system drivers like [EncFS](https://github.com/ncw/rclone/issues/261).
+system drivers like [EncFS](https://github.com/rclone/rclone/issues/261).
To disable UNC conversion globally, add this to your `.rclone.conf` file:
```
@@ -301,7 +301,7 @@ are being uploaded and aborts with a message which starts "can't copy
- source file is being updated" if the file changes during upload.
However on some file systems this modification time check may fail (eg
-[Glusterfs #2206](https://github.com/ncw/rclone/issues/2206)) so this
+[Glusterfs #2206](https://github.com/rclone/rclone/issues/2206)) so this
check can be disabled with this flag.
- Config: no_check_updated
diff --git a/docs/content/onedrive.md b/docs/content/onedrive.md
index ee3a52153..b5967dc64 100644
--- a/docs/content/onedrive.md
+++ b/docs/content/onedrive.md
@@ -249,7 +249,7 @@ The entire path, including the file name, must contain fewer than 400 characters
OneDrive seems to be OK with at least 50,000 files in a folder, but at
100,000 rclone will get errors listing the directory like `couldn’t
list files: UnknownError:`. See
-[#2707](https://github.com/ncw/rclone/issues/2707) for more info.
+[#2707](https://github.com/rclone/rclone/issues/2707) for more info.
An official document about the limitations for different types of OneDrive can be found [here](https://support.office.com/en-us/article/invalid-file-names-and-file-types-in-onedrive-onedrive-for-business-and-sharepoint-64883a5d-228e-48f5-b3d2-eb39e07630fa).
diff --git a/docs/content/overview.md b/docs/content/overview.md
index e0806d633..29f87a1e4 100644
--- a/docs/content/overview.md
+++ b/docs/content/overview.md
@@ -134,27 +134,27 @@ operations more efficient.
| Name | Purge | Copy | Move | DirMove | CleanUp | ListR | StreamUpload | LinkSharing | About |
| ---------------------------- |:-----:|:----:|:----:|:-------:|:-------:|:-----:|:------------:|:------------:|:-----:|
| 1Fichier | No | No | No | No | No | No | No | No | No |
-| Amazon Drive | Yes | No | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Amazon S3 | No | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
+| Amazon Drive | Yes | No | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Amazon S3 | No | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
| Backblaze B2 | No | Yes | No | No | Yes | Yes | Yes | Yes | No |
-| Box | Yes | Yes | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | Yes | Yes | No |
-| Dropbox | Yes | Yes | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | Yes | Yes | Yes |
-| FTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Google Cloud Storage | Yes | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
+| Box | Yes | Yes | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | Yes | Yes | No |
+| Dropbox | Yes | Yes | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | Yes | Yes | Yes |
+| FTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Google Cloud Storage | Yes | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
| Google Drive | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
| Google Photos | No | No | No | No | No | No | No | No | No |
-| HTTP | No | No | No | No | No | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Hubic | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
+| HTTP | No | No | No | No | No | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Hubic | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
| Jottacloud | Yes | Yes | Yes | Yes | No | Yes | No | Yes | Yes |
-| Mega | Yes | No | Yes | Yes | Yes | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| Microsoft Azure Blob Storage | Yes | Yes | No | No | No | Yes | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| Microsoft OneDrive | Yes | Yes | Yes | Yes | No [#575](https://github.com/ncw/rclone/issues/575) | No | No | Yes | Yes |
+| Mega | Yes | No | Yes | Yes | Yes | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| Microsoft Azure Blob Storage | Yes | Yes | No | No | No | Yes | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| Microsoft OneDrive | Yes | Yes | Yes | Yes | No [#575](https://github.com/rclone/rclone/issues/575) | No | No | Yes | Yes |
| OpenDrive | Yes | Yes | Yes | Yes | No | No | No | No | No |
-| Openstack Swift | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| pCloud | Yes | Yes | Yes | Yes | Yes | No | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| QingStor | No | Yes | No | No | No | Yes | No | No [#2178](https://github.com/ncw/rclone/issues/2178) | No |
-| SFTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
-| WebDAV | Yes | Yes | Yes | Yes | No | No | Yes ‡ | No [#2178](https://github.com/ncw/rclone/issues/2178) | Yes |
+| Openstack Swift | Yes † | Yes | No | No | No | Yes | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| pCloud | Yes | Yes | Yes | Yes | Yes | No | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| QingStor | No | Yes | No | No | No | Yes | No | No [#2178](https://github.com/rclone/rclone/issues/2178) | No |
+| SFTP | No | No | Yes | Yes | No | No | Yes | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
+| WebDAV | Yes | Yes | Yes | Yes | No | No | Yes ‡ | No [#2178](https://github.com/rclone/rclone/issues/2178) | Yes |
| Yandex Disk | Yes | Yes | Yes | Yes | Yes | No | Yes | Yes | Yes |
| The local filesystem | Yes | No | Yes | Yes | No | No | Yes | No | Yes |
diff --git a/docs/content/rc.md b/docs/content/rc.md
index 655d13413..aef592180 100644
--- a/docs/content/rc.md
+++ b/docs/content/rc.md
@@ -1110,14 +1110,14 @@ You can also use the `-text` flag to produce a textual summary
$ go tool pprof -text http://localhost:5572/debug/pprof/heap
Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
flat flat% sum% cum cum%
- 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
+ 1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
513kB 33.38% 100% 513kB 33.38% net/http.newBufioWriterSize
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/all.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/cmd/serve/restic.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init
- 0 0% 100% 1024.03kB 66.62% github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init.0
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/all.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve/restic.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init
+ 0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init.0
0 0% 100% 1024.03kB 66.62% main.init
0 0% 100% 513kB 33.38% net/http.(*conn).readRequest
0 0% 100% 513kB 33.38% net/http.(*conn).serve
diff --git a/docs/content/s3.md b/docs/content/s3.md
index d53e3bde4..bf8cd8593 100644
--- a/docs/content/s3.md
+++ b/docs/content/s3.md
@@ -401,7 +401,7 @@ If you are using server side encryption with KMS then you will find
you can't transfer small objects. As a work-around you can use the
`--ignore-checksum` flag.
-A proper fix is being worked on in [issue #1824](https://github.com/ncw/rclone/issues/1824).
+A proper fix is being worked on in [issue #1824](https://github.com/rclone/rclone/issues/1824).
### Glacier and Glacier Deep Archive ###
diff --git a/docs/content/webdav.md b/docs/content/webdav.md
index d9e389273..f2d1f6df2 100644
--- a/docs/content/webdav.md
+++ b/docs/content/webdav.md
@@ -220,7 +220,7 @@ Rclone can be used with Sharepoint provided by OneDrive for Business
or Office365 Education Accounts.
This feature is only needed for a few of these Accounts,
mostly Office365 Education ones. These accounts are sometimes not
-verified by the domain owner [github#1975](https://github.com/ncw/rclone/issues/1975)
+verified by the domain owner [github#1975](https://github.com/rclone/rclone/issues/1975)
This means that these accounts can't be added using the official
API (other Accounts should work with the "onedrive" option). However,
diff --git a/docs/layouts/chrome/menu.html b/docs/layouts/chrome/menu.html
index 1a56ce86f..4360175df 100644
--- a/docs/layouts/chrome/menu.html
+++ b/docs/layouts/chrome/menu.html
@@ -17,9 +17,9 @@
Rclone forum.
- Github project.
+ Github project.
Rclone slack chat.
- Rclone Wiki.
+ Rclone Wiki.
Donate.
@njcw
diff --git a/fs/accounting/accounting.go b/fs/accounting/accounting.go
index 7fa21a292..81a1b56f5 100644
--- a/fs/accounting/accounting.go
+++ b/fs/accounting/accounting.go
@@ -8,12 +8,12 @@ import (
"time"
"unicode/utf8"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/rc"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/asyncreader"
- "github.com/ncw/rclone/fs/fserrors"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/asyncreader"
+ "github.com/rclone/rclone/fs/fserrors"
)
// ErrorMaxTransferLimitReached is returned from Read when the max
diff --git a/fs/accounting/accounting_test.go b/fs/accounting/accounting_test.go
index 55b864dae..3986902a8 100644
--- a/fs/accounting/accounting_test.go
+++ b/fs/accounting/accounting_test.go
@@ -9,9 +9,9 @@ import (
"testing"
"unicode/utf8"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/asyncreader"
- "github.com/ncw/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/asyncreader"
+ "github.com/rclone/rclone/fs/fserrors"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/accounting/accounting_unix.go b/fs/accounting/accounting_unix.go
index 20d659d3d..8165363df 100644
--- a/fs/accounting/accounting_unix.go
+++ b/fs/accounting/accounting_unix.go
@@ -10,7 +10,7 @@ import (
"os/signal"
"syscall"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// startSignalHandler() sets a signal handler to catch SIGUSR2 and toggle throttling.
diff --git a/fs/accounting/inprogress.go b/fs/accounting/inprogress.go
index debf51a7e..ffc362c83 100644
--- a/fs/accounting/inprogress.go
+++ b/fs/accounting/inprogress.go
@@ -3,7 +3,7 @@ package accounting
import (
"sync"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// inProgress holds a synchronized map of in progress transfers
diff --git a/fs/accounting/stats.go b/fs/accounting/stats.go
index 9f4f07aad..56eef4709 100644
--- a/fs/accounting/stats.go
+++ b/fs/accounting/stats.go
@@ -8,9 +8,9 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/rc"
)
// StatsInfo accounts all transfers
diff --git a/fs/accounting/stats_groups.go b/fs/accounting/stats_groups.go
index 861ce226f..5376af69d 100644
--- a/fs/accounting/stats_groups.go
+++ b/fs/accounting/stats_groups.go
@@ -4,9 +4,9 @@ import (
"context"
"sync"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/rc"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
const globalStats = "global_stats"
diff --git a/fs/accounting/stats_test.go b/fs/accounting/stats_test.go
index 6141e083b..c04da8dfa 100644
--- a/fs/accounting/stats_test.go
+++ b/fs/accounting/stats_test.go
@@ -6,8 +6,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs/fserrors"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs/fserrors"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/accounting/stringset.go b/fs/accounting/stringset.go
index 78197e5aa..44b472549 100644
--- a/fs/accounting/stringset.go
+++ b/fs/accounting/stringset.go
@@ -6,7 +6,7 @@ import (
"strings"
"sync"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// stringSet holds a set of strings
diff --git a/fs/accounting/token_bucket.go b/fs/accounting/token_bucket.go
index bb017a25f..7671918c8 100644
--- a/fs/accounting/token_bucket.go
+++ b/fs/accounting/token_bucket.go
@@ -5,9 +5,9 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/rc"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/rc"
"golang.org/x/time/rate"
)
diff --git a/fs/accounting/token_bucket_test.go b/fs/accounting/token_bucket_test.go
index d9980fdde..b2997fbfe 100644
--- a/fs/accounting/token_bucket_test.go
+++ b/fs/accounting/token_bucket_test.go
@@ -4,7 +4,7 @@ import (
"context"
"testing"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/rc"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/time/rate"
diff --git a/fs/accounting/transfer.go b/fs/accounting/transfer.go
index bf1370a10..4741e170e 100644
--- a/fs/accounting/transfer.go
+++ b/fs/accounting/transfer.go
@@ -6,7 +6,7 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// TransferSnapshot represents state of an account at point in time.
diff --git a/fs/asyncreader/asyncreader.go b/fs/asyncreader/asyncreader.go
index bff3ae29e..b4feb3149 100644
--- a/fs/asyncreader/asyncreader.go
+++ b/fs/asyncreader/asyncreader.go
@@ -7,10 +7,10 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/lib/pool"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/lib/pool"
+ "github.com/rclone/rclone/lib/readers"
)
const (
diff --git a/fs/asyncreader/asyncreader_test.go b/fs/asyncreader/asyncreader_test.go
index 93dc471cb..2b4e8aaba 100644
--- a/fs/asyncreader/asyncreader_test.go
+++ b/fs/asyncreader/asyncreader_test.go
@@ -13,8 +13,8 @@ import (
"testing/iotest"
"time"
- "github.com/ncw/rclone/lib/israce"
- "github.com/ncw/rclone/lib/readers"
+ "github.com/rclone/rclone/lib/israce"
+ "github.com/rclone/rclone/lib/readers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/cache/cache.go b/fs/cache/cache.go
index 65a1fd52e..61706b423 100644
--- a/fs/cache/cache.go
+++ b/fs/cache/cache.go
@@ -5,7 +5,7 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
var (
diff --git a/fs/cache/cache_test.go b/fs/cache/cache_test.go
index 9bf16b182..65de2a817 100644
--- a/fs/cache/cache_test.go
+++ b/fs/cache/cache_test.go
@@ -6,8 +6,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/mockfs"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/mockfs"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/chunkedreader/chunkedreader.go b/fs/chunkedreader/chunkedreader.go
index 55cbb4f82..ac8b7f565 100644
--- a/fs/chunkedreader/chunkedreader.go
+++ b/fs/chunkedreader/chunkedreader.go
@@ -6,7 +6,7 @@ import (
"io"
"sync"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// io related errors returned by ChunkedReader
diff --git a/fs/chunkedreader/chunkedreader_test.go b/fs/chunkedreader/chunkedreader_test.go
index 467def510..d9fb3cccb 100644
--- a/fs/chunkedreader/chunkedreader_test.go
+++ b/fs/chunkedreader/chunkedreader_test.go
@@ -7,7 +7,7 @@ import (
"math/rand"
"testing"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/config/config.go b/fs/config/config.go
index cd8497986..c618c3978 100644
--- a/fs/config/config.go
+++ b/fs/config/config.go
@@ -25,16 +25,16 @@ import (
"github.com/Unknwon/goconfig"
homedir "github.com/mitchellh/go-homedir"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/driveletter"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/fspath"
- "github.com/ncw/rclone/fs/rc"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/driveletter"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/fspath"
+ "github.com/rclone/rclone/fs/rc"
"golang.org/x/crypto/nacl/secretbox"
"golang.org/x/text/unicode/norm"
)
diff --git a/fs/config/config_test.go b/fs/config/config_test.go
index 90b474846..76f39dc60 100644
--- a/fs/config/config_test.go
+++ b/fs/config/config_test.go
@@ -7,9 +7,9 @@ import (
"os"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/rc"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/config/config_unix.go b/fs/config/config_unix.go
index 6cda925fd..8db2c4c2b 100644
--- a/fs/config/config_unix.go
+++ b/fs/config/config_unix.go
@@ -11,7 +11,7 @@ import (
"strconv"
"syscall"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// attemptCopyGroups tries to keep the group the same. User will be the one
diff --git a/fs/config/configflags/configflags.go b/fs/config/configflags/configflags.go
index 90617c79f..b81be4a67 100644
--- a/fs/config/configflags/configflags.go
+++ b/fs/config/configflags/configflags.go
@@ -9,11 +9,11 @@ import (
"path/filepath"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/config/flags"
- fsLog "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config/flags"
+ fsLog "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/fs/rc"
"github.com/sirupsen/logrus"
"github.com/spf13/pflag"
)
diff --git a/fs/config/configstruct/configstruct.go b/fs/config/configstruct/configstruct.go
index 431996e5a..181f25b5e 100644
--- a/fs/config/configstruct/configstruct.go
+++ b/fs/config/configstruct/configstruct.go
@@ -7,8 +7,8 @@ import (
"regexp"
"strings"
- "github.com/ncw/rclone/fs/config/configmap"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs/config/configmap"
)
var matchUpper = regexp.MustCompile("([A-Z]+)")
diff --git a/fs/config/configstruct/configstruct_test.go b/fs/config/configstruct/configstruct_test.go
index 75e5fc29a..92af006fc 100644
--- a/fs/config/configstruct/configstruct_test.go
+++ b/fs/config/configstruct/configstruct_test.go
@@ -4,8 +4,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/configstruct"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/config/flags/flags.go b/fs/config/flags/flags.go
index 42f97af4c..daf76e9f6 100644
--- a/fs/config/flags/flags.go
+++ b/fs/config/flags/flags.go
@@ -7,7 +7,7 @@ import (
"os"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
"github.com/spf13/pflag"
)
diff --git a/fs/config/rc.go b/fs/config/rc.go
index eaf6ac404..2d2f4903e 100644
--- a/fs/config/rc.go
+++ b/fs/config/rc.go
@@ -3,8 +3,8 @@ package config
import (
"context"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/rc"
)
func init() {
diff --git a/fs/config/rc_test.go b/fs/config/rc_test.go
index 44c60bc0b..767ab625d 100644
--- a/fs/config/rc_test.go
+++ b/fs/config/rc_test.go
@@ -4,10 +4,10 @@ import (
"context"
"testing"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/rc"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/rc"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/direntries_test.go b/fs/direntries_test.go
index b2c1e9ea4..16bf101a5 100644
--- a/fs/direntries_test.go
+++ b/fs/direntries_test.go
@@ -4,9 +4,9 @@ import (
"sort"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/mockdir"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/mockdir"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/dirtree/dirtree.go b/fs/dirtree/dirtree.go
index 2cf2da9f2..64f5b2512 100644
--- a/fs/dirtree/dirtree.go
+++ b/fs/dirtree/dirtree.go
@@ -9,8 +9,8 @@ import (
"sort"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/lib/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/lib/errors"
)
// DirTree is a map of directories to entries
diff --git a/fs/dirtree/dirtree_test.go b/fs/dirtree/dirtree_test.go
index 1120ec369..b292ade0a 100644
--- a/fs/dirtree/dirtree_test.go
+++ b/fs/dirtree/dirtree_test.go
@@ -3,8 +3,8 @@ package dirtree
import (
"testing"
- "github.com/ncw/rclone/fstest/mockdir"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fstest/mockdir"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/filter/filter.go b/fs/filter/filter.go
index b98356a21..aa9d45ce1 100644
--- a/fs/filter/filter.go
+++ b/fs/filter/filter.go
@@ -12,8 +12,8 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
"golang.org/x/sync/errgroup"
)
diff --git a/fs/filter/filter_test.go b/fs/filter/filter_test.go
index 0cdb820cc..e5c360ab2 100644
--- a/fs/filter/filter_test.go
+++ b/fs/filter/filter_test.go
@@ -10,8 +10,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/filter/filterflags/filterflags.go b/fs/filter/filterflags/filterflags.go
index 26b0aa5be..913cf7581 100644
--- a/fs/filter/filterflags/filterflags.go
+++ b/fs/filter/filterflags/filterflags.go
@@ -2,9 +2,9 @@
package filterflags
import (
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/rc"
"github.com/spf13/pflag"
)
diff --git a/fs/fs.go b/fs/fs.go
index 81bd80001..c6febd29f 100644
--- a/fs/fs.go
+++ b/fs/fs.go
@@ -16,13 +16,13 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs/config/configmap"
- "github.com/ncw/rclone/fs/config/configstruct"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fspath"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/lib/pacer"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs/config/configmap"
+ "github.com/rclone/rclone/fs/config/configstruct"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fspath"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/lib/pacer"
)
// EntryType can be associated with remote paths to identify their type
diff --git a/fs/fs_test.go b/fs/fs_test.go
index 23e29259f..ade771842 100644
--- a/fs/fs_test.go
+++ b/fs/fs_test.go
@@ -9,9 +9,9 @@ import (
"github.com/stretchr/testify/require"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/lib/pacer"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/lib/pacer"
"github.com/spf13/pflag"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/fserrors/error.go b/fs/fserrors/error.go
index ee7e93832..46e859002 100644
--- a/fs/fserrors/error.go
+++ b/fs/fserrors/error.go
@@ -8,7 +8,7 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/lib/errors"
+ "github.com/rclone/rclone/lib/errors"
)
// Retrier is an optional interface for error as to whether the
diff --git a/fs/fshttp/http.go b/fs/fshttp/http.go
index eb7dd5679..a3f381401 100644
--- a/fs/fshttp/http.go
+++ b/fs/fshttp/http.go
@@ -16,7 +16,7 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
"golang.org/x/net/publicsuffix"
"golang.org/x/time/rate"
)
diff --git a/fs/fspath/path.go b/fs/fspath/path.go
index 42f3bcd44..fa992cf04 100644
--- a/fs/fspath/path.go
+++ b/fs/fspath/path.go
@@ -7,7 +7,7 @@ import (
"regexp"
"strings"
- "github.com/ncw/rclone/fs/driveletter"
+ "github.com/rclone/rclone/fs/driveletter"
)
// Matcher is a pattern to match an rclone URL
diff --git a/fs/hash/hash.go b/fs/hash/hash.go
index c14ce4884..bac03d414 100644
--- a/fs/hash/hash.go
+++ b/fs/hash/hash.go
@@ -10,9 +10,9 @@ import (
"strings"
"github.com/jzelinskie/whirlpool"
- "github.com/ncw/rclone/backend/dropbox/dbhash"
- "github.com/ncw/rclone/backend/onedrive/quickxorhash"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/dropbox/dbhash"
+ "github.com/rclone/rclone/backend/onedrive/quickxorhash"
)
// Type indicates a standard hashing algorithm
diff --git a/fs/hash/hash_test.go b/fs/hash/hash_test.go
index 03d7295d4..db1254b58 100644
--- a/fs/hash/hash_test.go
+++ b/fs/hash/hash_test.go
@@ -5,7 +5,7 @@ import (
"io"
"testing"
- "github.com/ncw/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/hash"
"github.com/spf13/pflag"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
diff --git a/fs/list/list.go b/fs/list/list.go
index 83abdbfc2..7e33c7517 100644
--- a/fs/list/list.go
+++ b/fs/list/list.go
@@ -6,9 +6,9 @@ import (
"sort"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/filter"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/filter"
)
// DirSorted reads Object and *Dir into entries for the given Fs.
diff --git a/fs/list/list_test.go b/fs/list/list_test.go
index 80858b32d..59312d898 100644
--- a/fs/list/list_test.go
+++ b/fs/list/list_test.go
@@ -5,9 +5,9 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/mockdir"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/mockdir"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/log/log.go b/fs/log/log.go
index d7219528f..b38facb84 100644
--- a/fs/log/log.go
+++ b/fs/log/log.go
@@ -9,8 +9,8 @@ import (
"runtime"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/flags"
)
// Flags
diff --git a/fs/log/redirect_stderr.go b/fs/log/redirect_stderr.go
index 72ac2f026..12af61eec 100644
--- a/fs/log/redirect_stderr.go
+++ b/fs/log/redirect_stderr.go
@@ -7,7 +7,7 @@ package log
import (
"os"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// redirectStderr to the file passed in
diff --git a/fs/log/redirect_stderr_unix.go b/fs/log/redirect_stderr_unix.go
index 4e7aa0a64..fca8e982f 100644
--- a/fs/log/redirect_stderr_unix.go
+++ b/fs/log/redirect_stderr_unix.go
@@ -8,7 +8,7 @@ import (
"log"
"os"
- "github.com/ncw/rclone/fs/config"
+ "github.com/rclone/rclone/fs/config"
"golang.org/x/sys/unix"
)
diff --git a/fs/log/syslog_unix.go b/fs/log/syslog_unix.go
index 2491b74c2..1bd363c64 100644
--- a/fs/log/syslog_unix.go
+++ b/fs/log/syslog_unix.go
@@ -10,7 +10,7 @@ import (
"os"
"path"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
var (
diff --git a/fs/march/march.go b/fs/march/march.go
index 1296f9b4c..41a7467ef 100644
--- a/fs/march/march.go
+++ b/fs/march/march.go
@@ -10,11 +10,11 @@ import (
"github.com/pkg/errors"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/dirtree"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/list"
- "github.com/ncw/rclone/fs/walk"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/dirtree"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/list"
+ "github.com/rclone/rclone/fs/walk"
"golang.org/x/text/unicode/norm"
)
diff --git a/fs/march/march_test.go b/fs/march/march_test.go
index 3b85574d3..b1f11067c 100644
--- a/fs/march/march_test.go
+++ b/fs/march/march_test.go
@@ -7,9 +7,9 @@ import (
"strings"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/mockdir"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/mockdir"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/object/object.go b/fs/object/object.go
index 38aa463e9..14b26daa2 100644
--- a/fs/object/object.go
+++ b/fs/object/object.go
@@ -9,8 +9,8 @@ import (
"io/ioutil"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
)
// NewStaticObjectInfo returns a static ObjectInfo
diff --git a/fs/object/object_test.go b/fs/object/object_test.go
index 6eb5d8714..5e4ae1c00 100644
--- a/fs/object/object_test.go
+++ b/fs/object/object_test.go
@@ -8,9 +8,9 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/object"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/object"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/operations/dedupe.go b/fs/operations/dedupe.go
index b57651989..a39c63129 100644
--- a/fs/operations/dedupe.go
+++ b/fs/operations/dedupe.go
@@ -10,11 +10,11 @@ import (
"sort"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
"github.com/spf13/pflag"
)
diff --git a/fs/operations/dedupe_test.go b/fs/operations/dedupe_test.go
index e3a4ef283..df7b9d2ac 100644
--- a/fs/operations/dedupe_test.go
+++ b/fs/operations/dedupe_test.go
@@ -5,11 +5,11 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/operations/listdirsorted_test.go b/fs/operations/listdirsorted_test.go
index dd962cf8c..708417e9f 100644
--- a/fs/operations/listdirsorted_test.go
+++ b/fs/operations/listdirsorted_test.go
@@ -4,10 +4,10 @@ import (
"context"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/list"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/list"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/operations/lsjson.go b/fs/operations/lsjson.go
index faaa61e21..2de99c7c6 100644
--- a/fs/operations/lsjson.go
+++ b/fs/operations/lsjson.go
@@ -5,10 +5,10 @@ import (
"path"
"time"
- "github.com/ncw/rclone/backend/crypt"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/walk"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/backend/crypt"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/walk"
)
// ListJSONItem in the struct which gets marshalled for each line
diff --git a/fs/operations/multithread.go b/fs/operations/multithread.go
index dfa8d683a..bac7435eb 100644
--- a/fs/operations/multithread.go
+++ b/fs/operations/multithread.go
@@ -4,9 +4,9 @@ import (
"context"
"io"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
"golang.org/x/sync/errgroup"
)
diff --git a/fs/operations/multithread_test.go b/fs/operations/multithread_test.go
index 1700e0153..0c263204f 100644
--- a/fs/operations/multithread_test.go
+++ b/fs/operations/multithread_test.go
@@ -5,10 +5,10 @@ import (
"fmt"
"testing"
- "github.com/ncw/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/accounting"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/operations/operations.go b/fs/operations/operations.go
index 7d4b8f604..eae809b2f 100644
--- a/fs/operations/operations.go
+++ b/fs/operations/operations.go
@@ -18,17 +18,17 @@ import (
"sync/atomic"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/march"
- "github.com/ncw/rclone/fs/object"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/march"
+ "github.com/rclone/rclone/fs/object"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/lib/readers"
"golang.org/x/sync/errgroup"
)
diff --git a/fs/operations/operations_internal_test.go b/fs/operations/operations_internal_test.go
index 11bb4f158..cb7f6ccd5 100644
--- a/fs/operations/operations_internal_test.go
+++ b/fs/operations/operations_internal_test.go
@@ -7,8 +7,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/object"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/object"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/operations/operations_test.go b/fs/operations/operations_test.go
index 841a5a6c8..5aabca1e9 100644
--- a/fs/operations/operations_test.go
+++ b/fs/operations/operations_test.go
@@ -35,14 +35,14 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/all" // import all backends
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/fshttp"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fstest"
+ _ "github.com/rclone/rclone/backend/all" // import all backends
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/fshttp"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/operations/rc.go b/fs/operations/rc.go
index 6dd39fe17..0ba58799b 100644
--- a/fs/operations/rc.go
+++ b/fs/operations/rc.go
@@ -4,9 +4,9 @@ import (
"context"
"strings"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/rc"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/rc"
)
func init() {
diff --git a/fs/operations/rc_test.go b/fs/operations/rc_test.go
index 8ea6c2415..3282fe71b 100644
--- a/fs/operations/rc_test.go
+++ b/fs/operations/rc_test.go
@@ -7,11 +7,11 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/rc"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/rc"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/operations/reopen.go b/fs/operations/reopen.go
index 85b935358..d0af5f5b3 100644
--- a/fs/operations/reopen.go
+++ b/fs/operations/reopen.go
@@ -5,8 +5,8 @@ import (
"io"
"sync"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
)
// reOpen is a wrapper for an object reader which reopens the stream on error
diff --git a/fs/operations/reopen_test.go b/fs/operations/reopen_test.go
index 433553fc6..075cf13a5 100644
--- a/fs/operations/reopen_test.go
+++ b/fs/operations/reopen_test.go
@@ -6,10 +6,10 @@ import (
"io/ioutil"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fstest/mockobject"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/options.go b/fs/options.go
index 4d2b0ef9b..df62d898a 100644
--- a/fs/options.go
+++ b/fs/options.go
@@ -8,8 +8,8 @@ import (
"strconv"
"strings"
- "github.com/ncw/rclone/fs/hash"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs/hash"
)
// OpenOption is an interface describing options for Open
diff --git a/fs/rc/cache.go b/fs/rc/cache.go
index 5fb52c4b3..f3b0b7d7b 100644
--- a/fs/rc/cache.go
+++ b/fs/rc/cache.go
@@ -3,8 +3,8 @@
package rc
import (
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/cache"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/cache"
)
// GetFsNamed gets a fs.Fs named fsName either from the cache or creates it afresh
diff --git a/fs/rc/cache_test.go b/fs/rc/cache_test.go
index d133df462..bad753417 100644
--- a/fs/rc/cache_test.go
+++ b/fs/rc/cache_test.go
@@ -3,8 +3,8 @@ package rc
import (
"testing"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fstest/mockfs"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fstest/mockfs"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/rc/internal.go b/fs/rc/internal.go
index 0efdf94b2..26a86c008 100644
--- a/fs/rc/internal.go
+++ b/fs/rc/internal.go
@@ -7,10 +7,10 @@ import (
"os"
"runtime"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/version"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/version"
)
func init() {
diff --git a/fs/rc/internal_test.go b/fs/rc/internal_test.go
index 64932f550..7abda3ff7 100644
--- a/fs/rc/internal_test.go
+++ b/fs/rc/internal_test.go
@@ -5,9 +5,9 @@ import (
"runtime"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config/obscure"
- "github.com/ncw/rclone/fs/version"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config/obscure"
+ "github.com/rclone/rclone/fs/version"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/rc/jobs/job.go b/fs/rc/jobs/job.go
index a35cc03a5..c43ca7d6c 100644
--- a/fs/rc/jobs/job.go
+++ b/fs/rc/jobs/job.go
@@ -9,12 +9,12 @@ import (
"sync/atomic"
"time"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/rc"
- "github.com/ncw/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/accounting"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
)
// Job describes a asynchronous task started via the rc package
diff --git a/fs/rc/jobs/job_test.go b/fs/rc/jobs/job_test.go
index a9372f13d..227230d98 100644
--- a/fs/rc/jobs/job_test.go
+++ b/fs/rc/jobs/job_test.go
@@ -6,9 +6,9 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/rc"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/rc"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/rc/rc.go b/fs/rc/rc.go
index 2d9e5590b..4c803e28c 100644
--- a/fs/rc/rc.go
+++ b/fs/rc/rc.go
@@ -12,7 +12,7 @@ import (
"io"
_ "net/http/pprof" // install the pprof http handlers
- "github.com/ncw/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/cmd/serve/httplib"
)
// Options contains options for the remote control server
diff --git a/fs/rc/rcflags/rcflags.go b/fs/rc/rcflags/rcflags.go
index 10f369272..072bf728b 100644
--- a/fs/rc/rcflags/rcflags.go
+++ b/fs/rc/rcflags/rcflags.go
@@ -2,9 +2,9 @@
package rcflags
import (
- "github.com/ncw/rclone/cmd/serve/httplib/httpflags"
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/cmd/serve/httplib/httpflags"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/rc"
"github.com/spf13/pflag"
)
diff --git a/fs/rc/rcserver/rcserver.go b/fs/rc/rcserver/rcserver.go
index ae803ed71..f9f845927 100644
--- a/fs/rc/rcserver/rcserver.go
+++ b/fs/rc/rcserver/rcserver.go
@@ -14,16 +14,16 @@ import (
"github.com/skratchdot/open-golang/open"
- "github.com/ncw/rclone/fs/rc/jobs"
+ "github.com/rclone/rclone/fs/rc/jobs"
- "github.com/ncw/rclone/cmd/serve/httplib"
- "github.com/ncw/rclone/cmd/serve/httplib/serve"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/list"
- "github.com/ncw/rclone/fs/rc"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/cmd/serve/httplib"
+ "github.com/rclone/rclone/cmd/serve/httplib/serve"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/list"
+ "github.com/rclone/rclone/fs/rc"
)
// Start the remote control server if configured
diff --git a/fs/rc/rcserver/rcserver_test.go b/fs/rc/rcserver/rcserver_test.go
index cdb7850aa..c06ee567f 100644
--- a/fs/rc/rcserver/rcserver_test.go
+++ b/fs/rc/rcserver/rcserver_test.go
@@ -12,8 +12,8 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/local"
- "github.com/ncw/rclone/fs/rc"
+ _ "github.com/rclone/rclone/backend/local"
+ "github.com/rclone/rclone/fs/rc"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/rc/registry.go b/fs/rc/registry.go
index 34996df17..eb452ce60 100644
--- a/fs/rc/registry.go
+++ b/fs/rc/registry.go
@@ -8,7 +8,7 @@ import (
"strings"
"sync"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// Func defines a type for a remote control function
diff --git a/fs/sync/pipe.go b/fs/sync/pipe.go
index ad173d111..0caf3f77a 100644
--- a/fs/sync/pipe.go
+++ b/fs/sync/pipe.go
@@ -4,7 +4,7 @@ import (
"context"
"sync"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// pipe provides an unbounded channel like experience
diff --git a/fs/sync/pipe_test.go b/fs/sync/pipe_test.go
index 17ce2611b..28ee2ca67 100644
--- a/fs/sync/pipe_test.go
+++ b/fs/sync/pipe_test.go
@@ -6,8 +6,8 @@ import (
"sync/atomic"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest/mockobject"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
)
diff --git a/fs/sync/rc.go b/fs/sync/rc.go
index eb90e323a..0b6ee1622 100644
--- a/fs/sync/rc.go
+++ b/fs/sync/rc.go
@@ -3,7 +3,7 @@ package sync
import (
"context"
- "github.com/ncw/rclone/fs/rc"
+ "github.com/rclone/rclone/fs/rc"
)
func init() {
diff --git a/fs/sync/rc_test.go b/fs/sync/rc_test.go
index 529fa4964..3625e8818 100644
--- a/fs/sync/rc_test.go
+++ b/fs/sync/rc_test.go
@@ -4,9 +4,9 @@ import (
"context"
"testing"
- "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/rc"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/rc"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fs/sync/sync.go b/fs/sync/sync.go
index 8de7e3d4e..58f2e2ba2 100644
--- a/fs/sync/sync.go
+++ b/fs/sync/sync.go
@@ -8,14 +8,14 @@ import (
"sort"
"sync"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/march"
- "github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/march"
+ "github.com/rclone/rclone/fs/operations"
)
type syncCopyMove struct {
diff --git a/fs/sync/sync_test.go b/fs/sync/sync_test.go
index daf49a5d8..85ee4f8d0 100644
--- a/fs/sync/sync_test.go
+++ b/fs/sync/sync_test.go
@@ -8,15 +8,15 @@ import (
"testing"
"time"
- _ "github.com/ncw/rclone/backend/all" // import all backends
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fstest"
"github.com/pkg/errors"
+ _ "github.com/rclone/rclone/backend/all" // import all backends
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/text/unicode/norm"
diff --git a/fs/version/version.go b/fs/version/version.go
index df2041315..a2accfe0b 100644
--- a/fs/version/version.go
+++ b/fs/version/version.go
@@ -6,8 +6,8 @@ import (
"strconv"
"strings"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
)
// Version represents a parsed rclone version number
diff --git a/fs/walk/walk.go b/fs/walk/walk.go
index ac6a92b23..bf61a819a 100644
--- a/fs/walk/walk.go
+++ b/fs/walk/walk.go
@@ -9,11 +9,11 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/dirtree"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fs/list"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/dirtree"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fs/list"
)
// ErrorSkipDir is used as a return value from Walk to indicate that the
diff --git a/fs/walk/walk_test.go b/fs/walk/walk_test.go
index 3f194d625..030361b25 100644
--- a/fs/walk/walk_test.go
+++ b/fs/walk/walk_test.go
@@ -8,12 +8,12 @@ import (
"sync"
"testing"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/filter"
- "github.com/ncw/rclone/fstest/mockdir"
- "github.com/ncw/rclone/fstest/mockfs"
- "github.com/ncw/rclone/fstest/mockobject"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/filter"
+ "github.com/rclone/rclone/fstest/mockdir"
+ "github.com/rclone/rclone/fstest/mockfs"
+ "github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fstest/fstest.go b/fstest/fstest.go
index e7f67e3dd..62fa9755b 100644
--- a/fstest/fstest.go
+++ b/fstest/fstest.go
@@ -22,11 +22,11 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/walk"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/walk"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/text/unicode/norm"
diff --git a/fstest/fstests/fstests.go b/fstest/fstests/fstests.go
index d127f2eb6..e34f712e4 100644
--- a/fstest/fstests/fstests.go
+++ b/fstest/fstests/fstests.go
@@ -22,16 +22,16 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/config"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/hash"
- "github.com/ncw/rclone/fs/object"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/walk"
- "github.com/ncw/rclone/fstest"
- "github.com/ncw/rclone/lib/readers"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/config"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/hash"
+ "github.com/rclone/rclone/fs/object"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/walk"
+ "github.com/rclone/rclone/fstest"
+ "github.com/rclone/rclone/lib/readers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
@@ -1607,7 +1607,7 @@ func Run(t *testing.T, opt *Opt) {
// an object in that folder, whose name is taken from a directory that
// exists in the absolute root.
// This test is added after
- // https://github.com/ncw/rclone/issues/3164.
+ // https://github.com/rclone/rclone/issues/3164.
t.Run("FsRootCollapse", func(t *testing.T) {
deepRemoteName := subRemoteName + "/deeper/nonexisting/directory"
deepRemote, err := fs.NewFs(deepRemoteName)
diff --git a/fstest/mockdir/dir.go b/fstest/mockdir/dir.go
index 71edf665c..103692910 100644
--- a/fstest/mockdir/dir.go
+++ b/fstest/mockdir/dir.go
@@ -4,7 +4,7 @@ package mockdir
import (
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// New makes a mock directory object with the name given
diff --git a/fstest/mockfs/mockfs.go b/fstest/mockfs/mockfs.go
index 1d181a2a6..476864e73 100644
--- a/fstest/mockfs/mockfs.go
+++ b/fstest/mockfs/mockfs.go
@@ -7,8 +7,8 @@ import (
"io"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
)
// Fs is a minimal mock Fs
diff --git a/fstest/mockobject/mockobject.go b/fstest/mockobject/mockobject.go
index 0a58d72f0..095508723 100644
--- a/fstest/mockobject/mockobject.go
+++ b/fstest/mockobject/mockobject.go
@@ -9,8 +9,8 @@ import (
"io"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/hash"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/hash"
)
var errNotImpl = errors.New("not implemented")
diff --git a/fstest/run.go b/fstest/run.go
index ea521b8db..507422b5b 100644
--- a/fstest/run.go
+++ b/fstest/run.go
@@ -38,10 +38,10 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/fserrors"
- "github.com/ncw/rclone/fs/object"
- "github.com/ncw/rclone/fs/walk"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/fserrors"
+ "github.com/rclone/rclone/fs/object"
+ "github.com/rclone/rclone/fs/walk"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/fstest/test_all/clean.go b/fstest/test_all/clean.go
index 2e61b96a7..f5ccd7e53 100644
--- a/fstest/test_all/clean.go
+++ b/fstest/test_all/clean.go
@@ -9,10 +9,10 @@ import (
"log"
"regexp"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/list"
- "github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/list"
+ "github.com/rclone/rclone/fs/operations"
)
// MatchTestRemote matches the remote names used for testing (copied
diff --git a/fstest/test_all/config.go b/fstest/test_all/config.go
index 03be388dc..9a8d3718c 100644
--- a/fstest/test_all/config.go
+++ b/fstest/test_all/config.go
@@ -9,8 +9,8 @@ import (
"log"
"path"
- "github.com/ncw/rclone/fs"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
yaml "gopkg.in/yaml.v2"
)
diff --git a/fstest/test_all/report.go b/fstest/test_all/report.go
index 74eba3a14..44e2a7eae 100644
--- a/fstest/test_all/report.go
+++ b/fstest/test_all/report.go
@@ -13,7 +13,7 @@ import (
"sort"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
"github.com/skratchdot/open-golang/open"
)
diff --git a/fstest/test_all/run.go b/fstest/test_all/run.go
index 03fd78c81..6dd314c45 100644
--- a/fstest/test_all/run.go
+++ b/fstest/test_all/run.go
@@ -20,7 +20,7 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
// Control concurrency per backend if required
diff --git a/fstest/test_all/test_all.go b/fstest/test_all/test_all.go
index 4bcf0b871..e2ee6a31e 100644
--- a/fstest/test_all/test_all.go
+++ b/fstest/test_all/test_all.go
@@ -23,8 +23,8 @@ import (
"strings"
"time"
- _ "github.com/ncw/rclone/backend/all" // import all fs
- "github.com/ncw/rclone/lib/pacer"
+ _ "github.com/rclone/rclone/backend/all" // import all fs
+ "github.com/rclone/rclone/lib/pacer"
)
var (
diff --git a/go.mod b/go.mod
index 00c008083..53987fedd 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/ncw/rclone
+module github.com/rclone/rclone
require (
bazil.org/fuse v0.0.0-20180421153158-65cc252bf669
diff --git a/lib/atexit/atexit.go b/lib/atexit/atexit.go
index 12b48ed86..59b1a922e 100644
--- a/lib/atexit/atexit.go
+++ b/lib/atexit/atexit.go
@@ -9,7 +9,7 @@ import (
"os/signal"
"sync"
- "github.com/ncw/rclone/fs"
+ "github.com/rclone/rclone/fs"
)
var (
diff --git a/lib/dircache/dircache.go b/lib/dircache/dircache.go
index 25e82b1e0..130690e5e 100644
--- a/lib/dircache/dircache.go
+++ b/lib/dircache/dircache.go
@@ -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
diff --git a/lib/encoder/internal/gen/main.go b/lib/encoder/internal/gen/main.go
index 6e775f58a..b1c4de8f1 100644
--- a/lib/encoder/internal/gen/main.go
+++ b/lib/encoder/internal/gen/main.go
@@ -10,7 +10,7 @@ import (
"strconv"
"strings"
- "github.com/ncw/rclone/lib/encoder"
+ "github.com/rclone/rclone/lib/encoder"
)
const (
diff --git a/lib/errors/errors_test.go b/lib/errors/errors_test.go
index 1a7c3f5d5..5ef92c683 100644
--- a/lib/errors/errors_test.go
+++ b/lib/errors/errors_test.go
@@ -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) {
diff --git a/lib/oauthutil/oauthutil.go b/lib/oauthutil/oauthutil.go
index 0fdb60ed0..25a5a225d 100644
--- a/lib/oauthutil/oauthutil.go
+++ b/lib/oauthutil/oauthutil.go
@@ -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"
)
diff --git a/lib/oauthutil/renew.go b/lib/oauthutil/renew.go
index 3af1218b5..1fb96e771 100644
--- a/lib/oauthutil/renew.go
+++ b/lib/oauthutil/renew.go
@@ -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.
diff --git a/lib/pacer/pacer.go b/lib/pacer/pacer.go
index 7e58230f5..71aea4b9d 100644
--- a/lib/pacer/pacer.go
+++ b/lib/pacer/pacer.go
@@ -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
diff --git a/lib/pool/pool.go b/lib/pool/pool.go
index c464e57ff..cf0ed93e2 100644
--- a/lib/pool/pool.go
+++ b/lib/pool/pool.go
@@ -8,7 +8,7 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/lib/mmap"
+ "github.com/rclone/rclone/lib/mmap"
)
// Pool of internal buffers
diff --git a/lib/rest/rest.go b/lib/rest/rest.go
index 5f04b5e69..dd0b3004d 100644
--- a/lib/rest/rest.go
+++ b/lib/rest/rest.go
@@ -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
diff --git a/rclone.1 b/rclone.1
index 84f22a81c..3ebd4f07f 100644
--- a/rclone.1
+++ b/rclone.1
@@ -127,7 +127,7 @@ Links
Home page (https://rclone.org/)
.IP \[bu] 2
GitHub project page for source and bug
-tracker (https://github.com/ncw/rclone)
+tracker (https://github.com/rclone/rclone)
.IP \[bu] 2
Rclone Forum (https://forum.rclone.org)
.IP \[bu] 2
@@ -265,7 +265,7 @@ Then
.IP
.nf
\f[C]
-git\ clone\ https://github.com/ncw/rclone.git
+git\ clone\ https://github.com/rclone/rclone.git
cd\ rclone
go\ build
\&./rclone\ version
@@ -278,14 +278,14 @@ GOPATH (https://github.com/golang/go/wiki/GOPATH) (which defaults to
.IP
.nf
\f[C]
-go\ get\ \-u\ \-v\ github.com/ncw/rclone
+go\ get\ \-u\ \-v\ github.com/rclone/rclone
\f[]
.fi
.PP
and this will build the binary in \f[C]$GOPATH/bin\f[]
(\f[C]~/go/bin/rclone\f[] by default) after downloading the source to
-\f[C]$GOPATH/src/github.com/ncw/rclone\f[]
-(\f[C]~/go/src/github.com/ncw/rclone\f[] by default).
+\f[C]$GOPATH/src/github.com/rclone/rclone\f[]
+(\f[C]~/go/src/github.com/rclone/rclone\f[] by default).
.SS Installation with Ansible
.PP
This can be done with Stefan Weichinger's ansible
@@ -2716,11 +2716,11 @@ too many callbacks to rclone from the kernel.
In theory 0s should be the correct value for filesystems which can
change outside the control of the kernel.
However this causes quite a few problems such as rclone using too much
-memory (https://github.com/ncw/rclone/issues/2157), rclone not serving
+memory (https://github.com/rclone/rclone/issues/2157), rclone not serving
files to
samba (https://forum.rclone.org/t/rclone-1-39-vs-1-40-mount-issue/5112)
and excessive time listing
-directories (https://github.com/ncw/rclone/issues/2095#issuecomment-371141147).
+directories (https://github.com/rclone/rclone/issues/2095#issuecomment-371141147).
.PP
The kernel can cache the info about a file for the time given by
\[lq]\[en]attr\-timeout\[rq].
@@ -5105,7 +5105,7 @@ rclone\ copy\ "E:\\folder\ name\\folder\ name\\folder\ name"\ remote:backup
.fi
.PP
If you are using the root directory on its own then don't quote it (see
-#464 (https://github.com/ncw/rclone/issues/464) for why), eg
+#464 (https://github.com/rclone/rclone/issues/464) for why), eg
.IP
.nf
\f[C]
@@ -5476,7 +5476,7 @@ transfer.
.PP
This can be useful for transferring files to and from OneDrive which
occasionally misreports the size of image files (see
-#399 (https://github.com/ncw/rclone/issues/399) for more info).
+#399 (https://github.com/rclone/rclone/issues/399) for more info).
.SS \-I, \[en]ignore\-times
.PP
Using this option will cause rclone to unconditionally upload all files
@@ -8292,14 +8292,14 @@ You can also use the \f[C]\-text\f[] flag to produce a textual summary
$\ go\ tool\ pprof\ \-text\ http://localhost:5572/debug/pprof/heap
Showing\ nodes\ accounting\ for\ 1537.03kB,\ 100%\ of\ 1537.03kB\ total
\ \ \ \ \ \ flat\ \ flat%\ \ \ sum%\ \ \ \ \ \ \ \ cum\ \ \ cum%
-\ 1024.03kB\ 66.62%\ 66.62%\ \ 1024.03kB\ 66.62%\ \ github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
+\ 1024.03kB\ 66.62%\ 66.62%\ \ 1024.03kB\ 66.62%\ \ github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
\ \ \ \ \ 513kB\ 33.38%\ \ \ 100%\ \ \ \ \ \ 513kB\ 33.38%\ \ net/http.newBufioWriterSize
-\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/ncw/rclone/cmd/all.init
-\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/ncw/rclone/cmd/serve.init
-\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/ncw/rclone/cmd/serve/restic.init
-\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/ncw/rclone/vendor/golang.org/x/net/http2.init
-\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init
-\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/ncw/rclone/vendor/golang.org/x/net/http2/hpack.init.0
+\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/rclone/rclone/cmd/all.init
+\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/rclone/rclone/cmd/serve.init
+\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/rclone/rclone/cmd/serve/restic.init
+\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/rclone/rclone/vendor/golang.org/x/net/http2.init
+\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init
+\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init.0
\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ 1024.03kB\ 66.62%\ \ main.init
\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ \ \ \ \ 513kB\ 33.38%\ \ net/http.(*conn).readRequest
\ \ \ \ \ \ \ \ \ 0\ \ \ \ \ 0%\ \ \ 100%\ \ \ \ \ \ 513kB\ 33.38%\ \ net/http.(*conn).serve
@@ -8798,13 +8798,13 @@ Yes
T}@T{
Yes
T}@T{
-No #575 (https://github.com/ncw/rclone/issues/575)
+No #575 (https://github.com/rclone/rclone/issues/575)
T}@T{
No
T}@T{
No
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -8825,7 +8825,7 @@ Yes
T}@T{
Yes
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -8846,7 +8846,7 @@ Yes
T}@T{
Yes
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -8861,7 +8861,7 @@ Yes
T}@T{
Yes
T}@T{
-No #575 (https://github.com/ncw/rclone/issues/575)
+No #575 (https://github.com/rclone/rclone/issues/575)
T}@T{
No
T}@T{
@@ -8882,7 +8882,7 @@ Yes
T}@T{
Yes
T}@T{
-No #575 (https://github.com/ncw/rclone/issues/575)
+No #575 (https://github.com/rclone/rclone/issues/575)
T}@T{
No
T}@T{
@@ -8909,7 +8909,7 @@ No
T}@T{
Yes
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -8930,7 +8930,7 @@ Yes
T}@T{
Yes
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -8972,7 +8972,7 @@ No
T}@T{
No
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -8993,7 +8993,7 @@ Yes
T}@T{
Yes
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
Yes
T}
@@ -9035,7 +9035,7 @@ No
T}@T{
No
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
Yes
T}
@@ -9056,7 +9056,7 @@ Yes
T}@T{
No
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -9071,7 +9071,7 @@ Yes
T}@T{
Yes
T}@T{
-No #575 (https://github.com/ncw/rclone/issues/575)
+No #575 (https://github.com/rclone/rclone/issues/575)
T}@T{
No
T}@T{
@@ -9119,7 +9119,7 @@ Yes
T}@T{
Yes
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
Yes
T}
@@ -9140,7 +9140,7 @@ No
T}@T{
No
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
Yes
T}
@@ -9161,7 +9161,7 @@ Yes
T}@T{
No
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
No
T}
@@ -9182,7 +9182,7 @@ No
T}@T{
Yes
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
Yes
T}
@@ -9203,7 +9203,7 @@ No
T}@T{
Yes ‡
T}@T{
-No #2178 (https://github.com/ncw/rclone/issues/2178)
+No #2178 (https://github.com/rclone/rclone/issues/2178)
T}@T{
Yes
T}
@@ -10279,7 +10279,7 @@ can't transfer small objects.
As a work\-around you can use the \f[C]\-\-ignore\-checksum\f[] flag.
.PP
A proper fix is being worked on in issue
-#1824 (https://github.com/ncw/rclone/issues/1824).
+#1824 (https://github.com/rclone/rclone/issues/1824).
.SS Glacier and Glacier Deep Archive
.PP
You can upload objects using the glacier storage class or transition
@@ -12694,7 +12694,7 @@ SHA1.
Sources which don't support SHA1, in particular \f[C]crypt\f[] will
upload large files without SHA1 checksums.
This may be fixed in the future (see
-#1767 (https://github.com/ncw/rclone/issues/1767)).
+#1767 (https://github.com/rclone/rclone/issues/1767)).
.PP
Files sizes below \f[C]\-\-b2\-upload\-cutoff\f[] will always have an
SHA1 regardless of the source.
@@ -12728,7 +12728,7 @@ Old versions of files, where available, are visible using the
\f[C]\-\-b2\-versions\f[] flag.
.PP
\f[B]NB\f[] Note that \f[C]\-\-b2\-versions\f[] does not work with crypt
-at the moment #1627 (https://github.com/ncw/rclone/issues/1627).
+at the moment #1627 (https://github.com/rclone/rclone/issues/1627).
Using \[en]backup\-dir (/docs/#backup-dir-dir) with rclone is the
recommended way of working around this.
.PP
@@ -12809,7 +12809,7 @@ All copy commands send the following 4 requests:
The \f[C]b2_list_file_names\f[] request will be sent once for every 1k
files in the remote path, providing the checksum and modification time
of the listed files.
-As of version 1.33 issue #818 (https://github.com/ncw/rclone/issues/818)
+As of version 1.33 issue #818 (https://github.com/rclone/rclone/issues/818)
causes extra requests to be sent when using B2 with Crypt.
When a copy operation does not require any files to be uploaded, no more
requests will be sent.
@@ -13584,11 +13584,11 @@ on them.
Any reports or feedback on how cache behaves on this OS is greatly
appreciated.
.IP \[bu] 2
-https://github.com/ncw/rclone/issues/1935
+https://github.com/rclone/rclone/issues/1935
.IP \[bu] 2
-https://github.com/ncw/rclone/issues/1907
+https://github.com/rclone/rclone/issues/1907
.IP \[bu] 2
-https://github.com/ncw/rclone/issues/1834
+https://github.com/rclone/rclone/issues/1834
.SS Risk of throttling
.PP
Future iterations of the cache backend will make use of the pooling
@@ -13608,9 +13608,9 @@ configured to do so.
.PP
Future enhancements:
.IP \[bu] 2
-https://github.com/ncw/rclone/issues/1937
+https://github.com/rclone/rclone/issues/1937
.IP \[bu] 2
-https://github.com/ncw/rclone/issues/1936
+https://github.com/rclone/rclone/issues/1936
.SS cache and crypt
.PP
One common scenario is to keep your data encrypted in the cloud provider
@@ -16840,7 +16840,7 @@ export URLs for drive documents.
Users have reported that the official export URLs can't export large
documents, whereas these unofficial ones can.
.PP
-See rclone issue #2243 (https://github.com/ncw/rclone/issues/2243) for
+See rclone issue #2243 (https://github.com/rclone/rclone/issues/2243) for
background, this google drive
issue (https://issuetracker.google.com/issues/36761333) and this helpful
post (https://www.labnol.org/internet/direct-links-for-google-drive/28356/).
@@ -18807,7 +18807,7 @@ typically longer than the original ones.
OneDrive seems to be OK with at least 50,000 files in a folder, but at
100,000 rclone will get errors listing the directory like
\f[C]couldn't\ list\ files:\ UnknownError:\f[].
-See #2707 (https://github.com/ncw/rclone/issues/2707) for more info.
+See #2707 (https://github.com/rclone/rclone/issues/2707) for more info.
.PP
An official document about the limitations for different types of
OneDrive can be found
@@ -21159,7 +21159,7 @@ Office365 Education Accounts.
This feature is only needed for a few of these Accounts, mostly
Office365 Education ones.
These accounts are sometimes not verified by the domain owner
-github#1975 (https://github.com/ncw/rclone/issues/1975)
+github#1975 (https://github.com/rclone/rclone/issues/1975)
.PP
This means that these accounts can't be added using the official API
(other Accounts should work with the \[lq]onedrive\[rq] option).
@@ -21483,7 +21483,7 @@ This is why you will see that your paths, for instance
is converted to \f[C]\\\\?\\UNC\\server\\share\f[].
.PP
However, in rare cases this may cause problems with buggy file system
-drivers like EncFS (https://github.com/ncw/rclone/issues/261).
+drivers like EncFS (https://github.com/rclone/rclone/issues/261).
To disable UNC conversion globally, add this to your
\f[C]\&.rclone.conf\f[] file:
.IP
@@ -21780,7 +21780,7 @@ copy \- source file is being updated\[rq] if the file changes during
upload.
.PP
However on some file systems this modification time check may fail (eg
-Glusterfs #2206 (https://github.com/ncw/rclone/issues/2206)) so this
+Glusterfs #2206 (https://github.com/rclone/rclone/issues/2206)) so this
check can be disabled with this flag.
.IP \[bu] 2
Config: no_check_updated
@@ -26443,7 +26443,7 @@ which will delete everything under the path, \f[B]inluding\f[] empty
directories.
.PP
This may be fixed at some point in Issue
-#100 (https://github.com/ncw/rclone/issues/100)
+#100 (https://github.com/rclone/rclone/issues/100)
.SS Directory timestamps aren't preserved
.PP
For the same reason as the above, rclone doesn't have a concept of a
@@ -27251,7 +27251,7 @@ https://forum.rclone.org
.PP
The project website is at:
.IP \[bu] 2
-https://github.com/ncw/rclone
+https://github.com/rclone/rclone
.PP
There you can file bug reports or contribute pull requests.
.SS Twitter
diff --git a/rclone.go b/rclone.go
index dbbf59236..a1e745f4a 100644
--- a/rclone.go
+++ b/rclone.go
@@ -4,9 +4,9 @@
package main
import (
- _ "github.com/ncw/rclone/backend/all" // import all backends
- "github.com/ncw/rclone/cmd"
- _ "github.com/ncw/rclone/cmd/all" // import all commands
+ _ "github.com/rclone/rclone/backend/all" // import all backends
+ "github.com/rclone/rclone/cmd"
+ _ "github.com/rclone/rclone/cmd/all" // import all commands
)
func main() {
diff --git a/vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_pipeline.go b/vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_pipeline.go
index 7c249a298..ba99255c1 100644
--- a/vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_pipeline.go
+++ b/vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_pipeline.go
@@ -41,6 +41,5 @@ func NewPipeline(c Credential, o PipelineOptions) pipeline.Pipeline {
NewRequestLogPolicyFactory(o.RequestLog),
pipeline.MethodFactoryMarker()) // indicates at what stage in the pipeline the method factory is invoked
-
return pipeline.NewPipeline(f, pipeline.Options{HTTPSender: o.HTTPSender, Log: o.Log})
}
diff --git a/vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_append_blob.go b/vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_append_blob.go
index 5000bc9f6..9c583fc1c 100644
--- a/vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_append_blob.go
+++ b/vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_append_blob.go
@@ -6,13 +6,14 @@ package azblob
import (
"context"
"encoding/base64"
- "github.com/Azure/azure-pipeline-go/pipeline"
"io"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"time"
+
+ "github.com/Azure/azure-pipeline-go/pipeline"
)
// appendBlobClient is the client for the AppendBlob methods of the Azblob service.
diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go b/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go
index a67327972..1128dc752 100644
--- a/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go
+++ b/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go
@@ -9,7 +9,7 @@ import (
"strings"
"syscall"
- "github.com/Azure/go-ansiterm"
+ ansiterm "github.com/Azure/go-ansiterm"
)
// Windows keyboard constants
diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go b/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go
index cbec8f728..c511eee92 100644
--- a/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go
+++ b/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go
@@ -2,7 +2,7 @@
package winterm
-import "github.com/Azure/go-ansiterm"
+import ansiterm "github.com/Azure/go-ansiterm"
const (
FOREGROUND_COLOR_MASK = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE
diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go b/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go
index 244b5fa25..12124daf9 100644
--- a/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go
+++ b/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go
@@ -2,7 +2,7 @@
package winterm
-import "github.com/Azure/go-ansiterm"
+import ansiterm "github.com/Azure/go-ansiterm"
func (h *windowsAnsiEventHandler) clearRange(attributes uint16, fromCoord COORD, toCoord COORD) error {
// Ignore an invalid (negative area) request
diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go b/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go
index 2d40fb75a..ec129a3ee 100644
--- a/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go
+++ b/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go
@@ -8,7 +8,7 @@ import (
"os"
"strconv"
- "github.com/Azure/go-ansiterm"
+ ansiterm "github.com/Azure/go-ansiterm"
)
type windowsAnsiEventHandler struct {
diff --git a/vendor/github.com/atotto/clipboard/clipboard_unix.go b/vendor/github.com/atotto/clipboard/clipboard_unix.go
index 8f5e23c37..3c7b24e84 100644
--- a/vendor/github.com/atotto/clipboard/clipboard_unix.go
+++ b/vendor/github.com/atotto/clipboard/clipboard_unix.go
@@ -15,8 +15,8 @@ import (
const (
xsel = "xsel"
xclip = "xclip"
- wlcopy = "wl-copy"
- wlpaste = "wl-paste"
+ wlcopy = "wl-copy"
+ wlpaste = "wl-paste"
termuxClipboardGet = "termux-clipboard-get"
termuxClipboardSet = "termux-clipboard-set"
)
@@ -34,7 +34,7 @@ var (
xclipCopyArgs = []string{xclip, "-in", "-selection", "clipboard"}
wlpasteArgs = []string{wlpaste, "--no-newline"}
- wlcopyArgs = []string{wlcopy}
+ wlcopyArgs = []string{wlcopy}
termuxPasteArgs = []string{termuxClipboardGet}
termuxCopyArgs = []string{termuxClipboardSet}
@@ -44,8 +44,8 @@ var (
func init() {
if os.Getenv("WAYLAND_DISPLAY") != "" {
- pasteCmdArgs = wlpasteArgs;
- copyCmdArgs = wlcopyArgs;
+ pasteCmdArgs = wlpasteArgs
+ copyCmdArgs = wlcopyArgs
if _, err := exec.LookPath(wlcopy); err == nil {
if _, err := exec.LookPath(wlpaste); err == nil {
diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
index 11c52c389..115836f4d 100644
--- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
+++ b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
@@ -6,7 +6,7 @@ import (
"strconv"
"strings"
- "github.com/jmespath/go-jmespath"
+ jmespath "github.com/jmespath/go-jmespath"
)
var indexRe = regexp.MustCompile(`(.+)\[(-?\d+)?\]$`)
diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/service.go b/vendor/github.com/aws/aws-sdk-go/service/s3/service.go
index d17dcc9da..a66aec8b6 100644
--- a/vendor/github.com/aws/aws-sdk-go/service/s3/service.go
+++ b/vendor/github.com/aws/aws-sdk-go/service/s3/service.go
@@ -7,7 +7,7 @@ import (
"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/client/metadata"
"github.com/aws/aws-sdk-go/aws/request"
- "github.com/aws/aws-sdk-go/aws/signer/v4"
+ v4 "github.com/aws/aws-sdk-go/aws/signer/v4"
"github.com/aws/aws-sdk-go/private/protocol/restxml"
)
diff --git a/vendor/github.com/aws/aws-sdk-go/service/sts/service.go b/vendor/github.com/aws/aws-sdk-go/service/sts/service.go
index 185c914d1..cfe81d61d 100644
--- a/vendor/github.com/aws/aws-sdk-go/service/sts/service.go
+++ b/vendor/github.com/aws/aws-sdk-go/service/sts/service.go
@@ -7,7 +7,7 @@ import (
"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/client/metadata"
"github.com/aws/aws-sdk-go/aws/request"
- "github.com/aws/aws-sdk-go/aws/signer/v4"
+ v4 "github.com/aws/aws-sdk-go/aws/signer/v4"
"github.com/aws/aws-sdk-go/private/protocol/query"
)
diff --git a/vendor/github.com/golang/protobuf/ptypes/any/any.pb.go b/vendor/github.com/golang/protobuf/ptypes/any/any.pb.go
index 78ee52334..fb8765a60 100644
--- a/vendor/github.com/golang/protobuf/ptypes/any/any.pb.go
+++ b/vendor/github.com/golang/protobuf/ptypes/any/any.pb.go
@@ -5,8 +5,9 @@ package any
import (
fmt "fmt"
- proto "github.com/golang/protobuf/proto"
math "math"
+
+ proto "github.com/golang/protobuf/proto"
)
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go b/vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go
index 0d681ee21..2e875b80c 100644
--- a/vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go
+++ b/vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go
@@ -5,8 +5,9 @@ package duration
import (
fmt "fmt"
- proto "github.com/golang/protobuf/proto"
math "math"
+
+ proto "github.com/golang/protobuf/proto"
)
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go b/vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
index 31cd846de..66532d3d0 100644
--- a/vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
+++ b/vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go
@@ -5,8 +5,9 @@ package timestamp
import (
fmt "fmt"
- proto "github.com/golang/protobuf/proto"
math "math"
+
+ proto "github.com/golang/protobuf/proto"
)
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/vendor/github.com/jlaffaye/ftp/ftp.go b/vendor/github.com/jlaffaye/ftp/ftp.go
index 4d2ec86c3..2973d9ab9 100644
--- a/vendor/github.com/jlaffaye/ftp/ftp.go
+++ b/vendor/github.com/jlaffaye/ftp/ftp.go
@@ -91,7 +91,7 @@ func Dial(addr string, options ...DialOption) (*ServerConn, error) {
if do.dialFunc != nil {
tconn, err = do.dialFunc("tcp", addr)
} else if do.tlsConfig != nil {
- tconn, err = tls.DialWithDialer(&do.dialer , "tcp", addr, do.tlsConfig)
+ tconn, err = tls.DialWithDialer(&do.dialer, "tcp", addr, do.tlsConfig)
} else {
ctx := do.context
@@ -188,7 +188,7 @@ func DialWithContext(ctx context.Context) DialOption {
}
// DialWithTLS returns a DialOption that configures the ServerConn with specified TLS config
-//
+//
// If called together with the DialWithDialFunc option, the DialWithDialFunc function
// will be used when dialing new connections but regardless of the function,
// the connection will be treated as a TLS connection.
diff --git a/vendor/github.com/koofr/go-koofrclient/client.go b/vendor/github.com/koofr/go-koofrclient/client.go
index 2821ae0d6..169a0196e 100644
--- a/vendor/github.com/koofr/go-koofrclient/client.go
+++ b/vendor/github.com/koofr/go-koofrclient/client.go
@@ -5,7 +5,7 @@ import (
"net/http"
"net/url"
- "github.com/koofr/go-httpclient"
+ httpclient "github.com/koofr/go-httpclient"
)
type KoofrClient struct {
diff --git a/vendor/github.com/koofr/go-koofrclient/client_device.go b/vendor/github.com/koofr/go-koofrclient/client_device.go
index 0f2390ddd..604fed321 100644
--- a/vendor/github.com/koofr/go-koofrclient/client_device.go
+++ b/vendor/github.com/koofr/go-koofrclient/client_device.go
@@ -1,8 +1,9 @@
package koofrclient
import (
- "github.com/koofr/go-httpclient"
"net/http"
+
+ httpclient "github.com/koofr/go-httpclient"
)
func (c *KoofrClient) Devices() (devices []Device, err error) {
diff --git a/vendor/github.com/koofr/go-koofrclient/client_files.go b/vendor/github.com/koofr/go-koofrclient/client_files.go
index 5ef1ecb9d..2d61eab3c 100644
--- a/vendor/github.com/koofr/go-koofrclient/client_files.go
+++ b/vendor/github.com/koofr/go-koofrclient/client_files.go
@@ -7,7 +7,7 @@ import (
"net/url"
"path"
- "github.com/koofr/go-httpclient"
+ httpclient "github.com/koofr/go-httpclient"
)
var ErrCannotOverwrite = fmt.Errorf("Can not overwrite (filter constraint fails)")
diff --git a/vendor/github.com/koofr/go-koofrclient/client_mount.go b/vendor/github.com/koofr/go-koofrclient/client_mount.go
index f5ea21ca0..8142333cf 100644
--- a/vendor/github.com/koofr/go-koofrclient/client_mount.go
+++ b/vendor/github.com/koofr/go-koofrclient/client_mount.go
@@ -1,8 +1,9 @@
package koofrclient
import (
- "github.com/koofr/go-httpclient"
"net/http"
+
+ httpclient "github.com/koofr/go-httpclient"
)
func (c *KoofrClient) Mounts() (mounts []Mount, err error) {
diff --git a/vendor/github.com/koofr/go-koofrclient/client_shared.go b/vendor/github.com/koofr/go-koofrclient/client_shared.go
index 414a215e0..23bf80b4b 100644
--- a/vendor/github.com/koofr/go-koofrclient/client_shared.go
+++ b/vendor/github.com/koofr/go-koofrclient/client_shared.go
@@ -3,7 +3,7 @@ package koofrclient
import (
"net/http"
- "github.com/koofr/go-httpclient"
+ httpclient "github.com/koofr/go-httpclient"
)
func (c *KoofrClient) Shared() (shared []Shared, err error) {
diff --git a/vendor/github.com/koofr/go-koofrclient/client_user.go b/vendor/github.com/koofr/go-koofrclient/client_user.go
index 93cde5f8f..86e56257b 100644
--- a/vendor/github.com/koofr/go-koofrclient/client_user.go
+++ b/vendor/github.com/koofr/go-koofrclient/client_user.go
@@ -1,8 +1,9 @@
package koofrclient
import (
- "github.com/koofr/go-httpclient"
"net/http"
+
+ httpclient "github.com/koofr/go-httpclient"
)
func (c *KoofrClient) UserInfo() (user User, err error) {
diff --git a/vendor/github.com/nsf/termbox-go/api.go b/vendor/github.com/nsf/termbox-go/api.go
index 92e3a44c7..28601a85f 100644
--- a/vendor/github.com/nsf/termbox-go/api.go
+++ b/vendor/github.com/nsf/termbox-go/api.go
@@ -2,13 +2,16 @@
package termbox
-import "github.com/mattn/go-runewidth"
-import "fmt"
-import "os"
-import "os/signal"
-import "syscall"
-import "runtime"
-import "time"
+import (
+ "fmt"
+ "os"
+ "os/signal"
+ "runtime"
+ "syscall"
+ "time"
+
+ runewidth "github.com/mattn/go-runewidth"
+)
// public API
diff --git a/vendor/github.com/nsf/termbox-go/termbox_windows.go b/vendor/github.com/nsf/termbox-go/termbox_windows.go
index 22e0f9ea0..35da3c6a7 100644
--- a/vendor/github.com/nsf/termbox-go/termbox_windows.go
+++ b/vendor/github.com/nsf/termbox-go/termbox_windows.go
@@ -4,7 +4,7 @@ import "math"
import "syscall"
import "unsafe"
import "unicode/utf16"
-import "github.com/mattn/go-runewidth"
+import runewidth "github.com/mattn/go-runewidth"
type (
wchar uint16
diff --git a/vendor/github.com/pkg/sftp/server_stubs.go b/vendor/github.com/pkg/sftp/server_stubs.go
index a14c73482..c489c1e11 100644
--- a/vendor/github.com/pkg/sftp/server_stubs.go
+++ b/vendor/github.com/pkg/sftp/server_stubs.go
@@ -3,9 +3,9 @@
package sftp
import (
+ "fmt"
"os"
"time"
- "fmt"
)
func runLs(dirname string, dirent os.FileInfo) string {
diff --git a/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go b/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
index 3c4f43f91..ff6ff7b99 100644
--- a/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
+++ b/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go
@@ -10,4 +10,3 @@ func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}
-
diff --git a/vendor/github.com/sirupsen/logrus/terminal_check_unix.go b/vendor/github.com/sirupsen/logrus/terminal_check_unix.go
index 355dc966f..163c468d5 100644
--- a/vendor/github.com/sirupsen/logrus/terminal_check_unix.go
+++ b/vendor/github.com/sirupsen/logrus/terminal_check_unix.go
@@ -10,4 +10,3 @@ func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
return err == nil
}
-
diff --git a/vendor/github.com/spf13/cobra/doc/yaml_docs.go b/vendor/github.com/spf13/cobra/doc/yaml_docs.go
index ea00af07e..5f040b553 100644
--- a/vendor/github.com/spf13/cobra/doc/yaml_docs.go
+++ b/vendor/github.com/spf13/cobra/doc/yaml_docs.go
@@ -23,7 +23,7 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/pflag"
- "gopkg.in/yaml.v2"
+ yaml "gopkg.in/yaml.v2"
)
type cmdOption struct {
diff --git a/vendor/github.com/stretchr/testify/require/require.go b/vendor/github.com/stretchr/testify/require/require.go
index 535f29349..997732ea8 100644
--- a/vendor/github.com/stretchr/testify/require/require.go
+++ b/vendor/github.com/stretchr/testify/require/require.go
@@ -6,10 +6,11 @@
package require
import (
- assert "github.com/stretchr/testify/assert"
http "net/http"
url "net/url"
time "time"
+
+ assert "github.com/stretchr/testify/assert"
)
// Condition uses a Comparison to assert a complex condition.
diff --git a/vendor/github.com/stretchr/testify/require/require_forward.go b/vendor/github.com/stretchr/testify/require/require_forward.go
index 9fe41dbdc..a2a0cf909 100644
--- a/vendor/github.com/stretchr/testify/require/require_forward.go
+++ b/vendor/github.com/stretchr/testify/require/require_forward.go
@@ -6,10 +6,11 @@
package require
import (
- assert "github.com/stretchr/testify/assert"
http "net/http"
url "net/url"
time "time"
+
+ assert "github.com/stretchr/testify/assert"
)
// Condition uses a Comparison to assert a complex condition.
diff --git a/vendor/github.com/yunify/qingstor-sdk-go/config/config.go b/vendor/github.com/yunify/qingstor-sdk-go/config/config.go
index 9f355ade0..6a8c06fba 100644
--- a/vendor/github.com/yunify/qingstor-sdk-go/config/config.go
+++ b/vendor/github.com/yunify/qingstor-sdk-go/config/config.go
@@ -24,7 +24,7 @@ import (
"strings"
"time"
- "gopkg.in/yaml.v2"
+ yaml "gopkg.in/yaml.v2"
"github.com/yunify/qingstor-sdk-go/logger"
"github.com/yunify/qingstor-sdk-go/utils"
diff --git a/vendor/github.com/yunify/qingstor-sdk-go/request/builder/qingstor.go b/vendor/github.com/yunify/qingstor-sdk-go/request/builder/qingstor.go
index 78b28c3fb..b9dcd4142 100644
--- a/vendor/github.com/yunify/qingstor-sdk-go/request/builder/qingstor.go
+++ b/vendor/github.com/yunify/qingstor-sdk-go/request/builder/qingstor.go
@@ -32,7 +32,7 @@ import (
"github.com/pengsrc/go-shared/convert"
- "github.com/yunify/qingstor-sdk-go"
+ sdk "github.com/yunify/qingstor-sdk-go"
"github.com/yunify/qingstor-sdk-go/logger"
"github.com/yunify/qingstor-sdk-go/request/data"
"github.com/yunify/qingstor-sdk-go/utils"
diff --git a/vendor/golang.org/x/crypto/ssh/agent/client.go b/vendor/golang.org/x/crypto/ssh/agent/client.go
index 51f740500..7834396c9 100644
--- a/vendor/golang.org/x/crypto/ssh/agent/client.go
+++ b/vendor/golang.org/x/crypto/ssh/agent/client.go
@@ -26,6 +26,7 @@ import (
"sync"
"crypto"
+
"golang.org/x/crypto/ed25519"
"golang.org/x/crypto/ssh"
)
diff --git a/vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go b/vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go
index 3d5f06a9f..9a457b232 100644
--- a/vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go
+++ b/vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go
@@ -7,9 +7,10 @@
package terminal // import "golang.org/x/crypto/ssh/terminal"
import (
- "golang.org/x/sys/unix"
"io"
"syscall"
+
+ "golang.org/x/sys/unix"
)
// State contains the state of a terminal.
diff --git a/vendor/gopkg.in/yaml.v2/readerc.go b/vendor/gopkg.in/yaml.v2/readerc.go
index 7c1f5fac3..b0c436c4a 100644
--- a/vendor/gopkg.in/yaml.v2/readerc.go
+++ b/vendor/gopkg.in/yaml.v2/readerc.go
@@ -95,7 +95,7 @@ func yaml_parser_update_buffer(parser *yaml_parser_t, length int) bool {
// [Go] This function was changed to guarantee the requested length size at EOF.
// The fact we need to do this is pretty awful, but the description above implies
- // for that to be the case, and there are tests
+ // for that to be the case, and there are tests
// If the EOF flag is set and the raw buffer is empty, do nothing.
if parser.eof && parser.raw_buffer_pos == len(parser.raw_buffer) {
diff --git a/vendor/gopkg.in/yaml.v2/resolve.go b/vendor/gopkg.in/yaml.v2/resolve.go
index 6c151db6f..bf830eee5 100644
--- a/vendor/gopkg.in/yaml.v2/resolve.go
+++ b/vendor/gopkg.in/yaml.v2/resolve.go
@@ -180,7 +180,7 @@ func resolve(tag string, in string) (rtag string, out interface{}) {
return yaml_INT_TAG, uintv
}
} else if strings.HasPrefix(plain, "-0b") {
- intv, err := strconv.ParseInt("-" + plain[3:], 2, 64)
+ intv, err := strconv.ParseInt("-"+plain[3:], 2, 64)
if err == nil {
if true || intv == int64(int(intv)) {
return yaml_INT_TAG, int(intv)
diff --git a/vendor/gopkg.in/yaml.v2/sorter.go b/vendor/gopkg.in/yaml.v2/sorter.go
index 4c45e660a..2edd73405 100644
--- a/vendor/gopkg.in/yaml.v2/sorter.go
+++ b/vendor/gopkg.in/yaml.v2/sorter.go
@@ -52,7 +52,7 @@ func (l keyList) Less(i, j int) bool {
var ai, bi int
var an, bn int64
if ar[i] == '0' || br[i] == '0' {
- for j := i-1; j >= 0 && unicode.IsDigit(ar[j]); j-- {
+ for j := i - 1; j >= 0 && unicode.IsDigit(ar[j]); j-- {
if ar[j] != '0' {
an = 1
bn = 1
diff --git a/vfs/cache.go b/vfs/cache.go
index d4bdffd4f..87b0b3104 100644
--- a/vfs/cache.go
+++ b/vfs/cache.go
@@ -15,10 +15,10 @@ import (
"time"
"github.com/djherbis/times"
- "github.com/ncw/rclone/fs"
- fscache "github.com/ncw/rclone/fs/cache"
- "github.com/ncw/rclone/fs/config"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ fscache "github.com/rclone/rclone/fs/cache"
+ "github.com/rclone/rclone/fs/config"
)
// CacheMode controls the functionality of the cache
diff --git a/vfs/cache_test.go b/vfs/cache_test.go
index d502e3bfd..4f29d46dc 100644
--- a/vfs/cache_test.go
+++ b/vfs/cache_test.go
@@ -11,7 +11,7 @@ import (
"time"
"github.com/djherbis/times"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fstest"
"github.com/spf13/pflag"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
diff --git a/vfs/dir.go b/vfs/dir.go
index a6d1d4579..f36489830 100644
--- a/vfs/dir.go
+++ b/vfs/dir.go
@@ -9,12 +9,12 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/dirtree"
- "github.com/ncw/rclone/fs/list"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/fs/walk"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/dirtree"
+ "github.com/rclone/rclone/fs/list"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/fs/walk"
)
// Dir represents a directory entry
diff --git a/vfs/dir_handle_test.go b/vfs/dir_handle_test.go
index df5f3fc3b..74fc483b4 100644
--- a/vfs/dir_handle_test.go
+++ b/vfs/dir_handle_test.go
@@ -6,7 +6,7 @@ import (
"os"
"testing"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/vfs/dir_test.go b/vfs/dir_test.go
index d61bdf172..fe0d10e0c 100644
--- a/vfs/dir_test.go
+++ b/vfs/dir_test.go
@@ -8,8 +8,8 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/vfs/file.go b/vfs/file.go
index 90034601b..0622f4cf9 100644
--- a/vfs/file.go
+++ b/vfs/file.go
@@ -8,10 +8,10 @@ import (
"sync/atomic"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/fs/operations"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/fs/operations"
)
// File represents a file
diff --git a/vfs/file_test.go b/vfs/file_test.go
index 8dd2b371e..c451f2d6c 100644
--- a/vfs/file_test.go
+++ b/vfs/file_test.go
@@ -6,7 +6,7 @@ import (
"os"
"testing"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/vfs/make_open_tests.go b/vfs/make_open_tests.go
index f0c4dd661..9d3f4a684 100644
--- a/vfs/make_open_tests.go
+++ b/vfs/make_open_tests.go
@@ -16,7 +16,7 @@ import (
"os"
"strings"
- "github.com/ncw/rclone/lib/file"
+ "github.com/rclone/rclone/lib/file"
)
// Interprets err into a vfs error
diff --git a/vfs/rc.go b/vfs/rc.go
index 1f67e7318..f34074e56 100644
--- a/vfs/rc.go
+++ b/vfs/rc.go
@@ -6,9 +6,9 @@ import (
"strings"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/rc"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/rc"
)
// Add remote control for the VFS
diff --git a/vfs/read.go b/vfs/read.go
index 7dd5b0775..af6b3b487 100644
--- a/vfs/read.go
+++ b/vfs/read.go
@@ -6,11 +6,11 @@ import (
"os"
"sync"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/accounting"
- "github.com/ncw/rclone/fs/chunkedreader"
- "github.com/ncw/rclone/fs/hash"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/accounting"
+ "github.com/rclone/rclone/fs/chunkedreader"
+ "github.com/rclone/rclone/fs/hash"
)
// ReadFileHandle is an open for read file handle on a File
diff --git a/vfs/read_test.go b/vfs/read_test.go
index 503e5a3e2..3af74a243 100644
--- a/vfs/read_test.go
+++ b/vfs/read_test.go
@@ -6,7 +6,7 @@ import (
"os"
"testing"
- "github.com/ncw/rclone/fstest"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/vfs/read_write.go b/vfs/read_write.go
index d5e43fbb1..2bbd269e3 100644
--- a/vfs/read_write.go
+++ b/vfs/read_write.go
@@ -9,11 +9,11 @@ import (
"runtime"
"sync"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/log"
- "github.com/ncw/rclone/fs/operations"
- "github.com/ncw/rclone/lib/file"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/log"
+ "github.com/rclone/rclone/fs/operations"
+ "github.com/rclone/rclone/lib/file"
)
// RWFileHandle is a handle that can be open for read and write.
diff --git a/vfs/read_write_test.go b/vfs/read_write_test.go
index e6245231c..6b8d96bfb 100644
--- a/vfs/read_write_test.go
+++ b/vfs/read_write_test.go
@@ -8,9 +8,9 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/vfs/test_vfs/test_vfs.go b/vfs/test_vfs/test_vfs.go
index 1da64f16e..8474b7620 100644
--- a/vfs/test_vfs/test_vfs.go
+++ b/vfs/test_vfs/test_vfs.go
@@ -17,7 +17,7 @@ import (
"sync/atomic"
"time"
- "github.com/ncw/rclone/lib/file"
+ "github.com/rclone/rclone/lib/file"
)
var (
diff --git a/vfs/vfs.go b/vfs/vfs.go
index 36f705d56..5e8608241 100644
--- a/vfs/vfs.go
+++ b/vfs/vfs.go
@@ -28,8 +28,8 @@ import (
"sync/atomic"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/log"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/log"
)
// DefaultOpt is the default values uses for Opt
diff --git a/vfs/vfs_test.go b/vfs/vfs_test.go
index 359327f64..bc2a5a3cd 100644
--- a/vfs/vfs_test.go
+++ b/vfs/vfs_test.go
@@ -8,10 +8,10 @@ import (
"os"
"testing"
- _ "github.com/ncw/rclone/backend/all" // import all the backends
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest"
"github.com/pkg/errors"
+ _ "github.com/rclone/rclone/backend/all" // import all the backends
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
diff --git a/vfs/vfsflags/vfsflags.go b/vfs/vfsflags/vfsflags.go
index a8244a49a..f5240f3b9 100644
--- a/vfs/vfsflags/vfsflags.go
+++ b/vfs/vfsflags/vfsflags.go
@@ -2,9 +2,9 @@
package vfsflags
import (
- "github.com/ncw/rclone/fs/config/flags"
- "github.com/ncw/rclone/fs/rc"
- "github.com/ncw/rclone/vfs"
+ "github.com/rclone/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/rc"
+ "github.com/rclone/rclone/vfs"
"github.com/spf13/pflag"
)
diff --git a/vfs/vfsflags/vfsflags_unix.go b/vfs/vfsflags/vfsflags_unix.go
index 66adf03d3..36fe6335d 100644
--- a/vfs/vfsflags/vfsflags_unix.go
+++ b/vfs/vfsflags/vfsflags_unix.go
@@ -3,7 +3,7 @@
package vfsflags
import (
- "github.com/ncw/rclone/fs/config/flags"
+ "github.com/rclone/rclone/fs/config/flags"
"github.com/spf13/pflag"
"golang.org/x/sys/unix"
)
diff --git a/vfs/write.go b/vfs/write.go
index cdfda39b5..68ad2b7b9 100644
--- a/vfs/write.go
+++ b/vfs/write.go
@@ -7,8 +7,8 @@ import (
"sync"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fs/operations"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fs/operations"
)
// WriteFileHandle is an open for write handle on a File
diff --git a/vfs/write_test.go b/vfs/write_test.go
index ca53eb433..6c607ec08 100644
--- a/vfs/write_test.go
+++ b/vfs/write_test.go
@@ -7,9 +7,9 @@ import (
"testing"
"time"
- "github.com/ncw/rclone/fs"
- "github.com/ncw/rclone/fstest"
"github.com/pkg/errors"
+ "github.com/rclone/rclone/fs"
+ "github.com/rclone/rclone/fstest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)