kulakovt / Boombr

Static content generator for DotNetRu
3 stars 2 forks source link

Added script to export XML with all information #15

Closed pfedotovsky closed 6 years ago

pfedotovsky commented 7 years ago

Added script to export XML will all information

pfedotovsky commented 7 years ago

Thanks for the comments! Have you taken a look at the file ending issue (AppVeyor build is failing)?

kulakovt commented 7 years ago

Nope, I have plan to do it on the weekend

kulakovt commented 7 years ago

Hey @pfedotovsky . I investigate the failed test ("Should have windows like end of file"). And found that your file "XmlUtility.ps1" was actually pushed in the unix end of line format. It's easy to see, just download raw file (do not use git client) from this link:

https://raw.githubusercontent.com/pfedotovsky/Boombr/d63912c5ac3d92ac9c2524a1c2b7296e7720621c/src/XmlUtility.ps1

and open it in any hex editor. You will see 0x0A line ending.

You can't detect this problem through the git client because it automatically convert the end of lines. For more detail see autocrlf option (git config --help). For having the same line ending in your local copy and in the remote repository, you should have value autocrlf = false. You can set this option for your local repository. Just run command: git config core.autocrlf false

kulakovt commented 7 years ago

@pfedotovsky , any updates?

pfedotovsky commented 7 years ago

@AnatolyKulakov planning to fix all of this soon (today or tomorrow)