Updates end-of-line for batch file

Using *nix' `lf` line endings instead of `crlf` in Windows batch files can lead to [unexpected results](https://stackoverflow.com/questions/232651/why-the-system-cannot-find-the-batch-label-specified-is-thrown-even-if-label-e).
This commit is contained in:
nu_no 2019-08-27 19:26:53 +02:00 committed by GitHub
parent 0543f2da92
commit 04e7c70b26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,7 +70,12 @@ indent_size = 2
indent_style = space
indent_size = 2
[{shell.bat,shell.sh,update-docker.sh}]
[{shell.sh,update-docker.sh}]
indent_style = tab
indent_size = 4
[shell.bat]
end_of_line = crlf
indent_style = tab
indent_size = 4