all: add .gitattributes
This forces shell scripts to always have LF line endings. By default Windows uses CRLF which breaks the docker build, because docker-start.sh doesn't have the correct line endings. Adding this file should fix that.
This commit is contained in:
parent
70f2164dc6
commit
6075ae9326
|
@ -0,0 +1,5 @@
|
||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
# Shell scripts require LF
|
||||||
|
*.sh text eol=lf
|
Loading…
Reference in New Issue