Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +00:00

16 lines
281 B
Batchfile
Executable File

@echo off
rem This script will convert Unix-style line endings into Windows format.
for %%P in (*.ds?) do call :fixline %%P
goto :eof
:fixline
@echo on
if exist "%~1.new" del "%~1.new"
for /f %%S in (%1) do (
echo %%S>>"%~1.new"
)
ren %1 "%~1.bak"
ren "%~1.new" %1
goto :eof