Quote:
Originally Posted by NiLuJe
@MrTick: Kudos! Can you send a PR to my GitHub fork?
|
Hi NiLuJe
First of all, thanks for keeping the sources current.
Now, for the record, I updated my GitHub copy with your last 2 commits and downloaded the updated files to my kindle...
ooops, LibrarianSync was hanging...
Kual log read
Code:
env: can't execute 'python2.7
': No such file or directory
Then I realized that I was working from my windows computer and that GIT was saving the files using CRLF instead of LF...
Solution was to change CRLF to LF (notepad+ does that at a mouse click)...
Then when I went to commit the change, GIT told me that the file would be saved using CRLF...
Solution is to issue
Code:
git config --global core.autocrlf input
Quote:
This setup should leave you with CRLF endings in Windows checkouts, but LF endings on macOS and Linux systems and in the repository.
|
the above quoted from the
Pro Git book chapter 8, paragraph core.autocrlf
Of course, I should have downloaded a zip from your GitHub repository and, via 7zip, move the needed files to the kindle...