1
edit
Changes
→How do I resolve the windows line ending error when trying to build FireFox?
</pre>
'''Answer 3''': Before cloning the repository, you set the core.autocrlf to true input (which always checks things out with LF line endings) by using the following line.
<pre>
git config --global core.autocrlf trueinput
</pre>
Afterwards, you can freely clone the repository and the build should now work.