I found a pretty obvious typo in an errormessage, but I've literally never contributed to a foss project before. Do I have to do anything "in advance"?
I'd like to fix this myself, just so I learn how to contribute.
Best
Joe
I found a pretty obvious typo in an errormessage, but I've literally never contributed to a foss project before. Do I have to do anything "in advance"?
I'd like to fix this myself, just so I learn how to contribute.
Best
Joe
For a small typo, just dive in there and send a fix
For bigger changes it is best to make an issue to discuss first.
Error thrown by copy; "error reading source root directory: directory not found" on bad filename. So, not directory, file. Obvs I don't know yet if directories and files are handled separately.
Note that when you type remote:path_to_file
rclone doesn't actually know whether path_to_file
is a directory or a file and one of the first things it has to do is find out. If it isn't found it assumes that you were trying to find a directory - hence the error message!
OK, will read code more tyvm
Can you suggest a starting point for reading code?
Thanks again
Joe
The best place to start is the CONTRIBUTING doc. This has lots of useful stuff in, but also has an overview of the code organisation.
Depending what you are interested in you could look at the source for fs/sync
(the top level sync routine) or the source for one of the backends (eg backend/box
).
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.