8 lines
372 B
Plaintext
8 lines
372 B
Plaintext
# Force LF for anything that gets exec'd inside the (Linux) Docker image.
|
|
# Checking these out with CRLF -- which happens by default on Windows
|
|
# clones with core.autocrlf=true -- breaks `exec` at container startup
|
|
# with a misleading "no such file or directory": the CRLF shebang line
|
|
# doesn't resolve to a real interpreter path.
|
|
*.sh text eol=lf
|
|
Dockerfile text eol=lf
|