Fix more line endings of (DOS) command files in IDE folders.

These DOS command files / scripts / batch files should have cr/lf line endings.
This commit is contained in:
Albrecht Schlosser 2018-12-22 01:09:10 +01:00
parent 9a7c01a8aa
commit 168ec2e89e
3 changed files with 27 additions and 26 deletions

1
ide/.gitattributes vendored
View File

@ -4,6 +4,7 @@
# MS VC files with Windows line endings (crlf)
*.cmd eol=crlf
*.dsp eol=crlf
*.dsw eol=crlf
*.filters eol=crlf

View File

@ -1,13 +1,13 @@
@echo off
echo Compiling fluid files ...
pushd .
cd ../../test
if "%1"=="/D" goto debugmode
..\fluid\fluid -c "%1"
goto end
:debugmode:
..\fluid\fluidd -c "%2"
:end
popd
@echo off
echo Compiling fluid files ...
pushd .
cd ../../test
if "%1"=="/D" goto debugmode
..\fluid\fluid -c "%1"
goto end
:debugmode:
..\fluid\fluidd -c "%2"
:end
popd

View File

@ -1,13 +1,13 @@
@echo off
echo Compiling fluid files ...
pushd .
cd ../../test
if "%1"=="/D" goto debugmode
..\fluid\fluid -c "%1"
goto end
:debugmode:
..\fluid\fluidd -c "%2"
:end
popd
@echo off
echo Compiling fluid files ...
pushd .
cd ../../test
if "%1"=="/D" goto debugmode
..\fluid\fluid -c "%1"
goto end
:debugmode:
..\fluid\fluidd -c "%2"
:end
popd