On OSX (and Windows too I believe), the fact that there is a file fb.csv and another file FB.csv cause git clone to return a warning and (much worse) only download fb.csv when cloning. FB.csv is not downloaded as part of the clone operation, leaving the project in an invalid state.
This PR fixes the issue by renaming the two files and fixing all source code references to either file. The renaming is as follows:
On OSX (and Windows too I believe), the fact that there is a file
fb.csv
and another fileFB.csv
causegit clone
to return a warning and (much worse) only downloadfb.csv
when cloning.FB.csv
is not downloaded as part of the clone operation, leaving the project in an invalid state.This PR fixes the issue by renaming the two files and fixing all source code references to either file. The renaming is as follows:
fb.csv
=>fb_1.csv
FB.csv
=>FB_2.csv