Files
UnrealEngineUWP/Engine/Build/BatchFiles/FixDependencyFiles.bat
Joe Barnes 55cc21d08f Copying //UE4/Dev-Console to Main (//UE4/Main) Source CL: 4825024
#lockdown: Nick.Penwarden
#rb integration

[CL 4825156 by Joe Barnes in Main branch]
2019-01-28 17:35:18 -05:00

8 lines
374 B
Batchfile

echo Fixing inconsistent case in filenames.
@echo off
pushd %~dp0..\..\
for /f "tokens=*" %%X in ('dir /b /s /a:-d Content\Editor\Slate\*.PNG') do ren "%%X" "%%~nX.png"
for /f "tokens=*" %%X in ('dir /b /s /a:-d Content\Slate\*.PNG') do ren "%%X" "%%~nX.png"
for /f "tokens=*" %%X in ('dir /b /s /a:-d Documentation\Source\Shared\Icons\*.PNG') do ren "%%X" "%%~nX.png"
popd