Files
UnrealEngineUWP/Engine/Build/BatchFiles/FixDependencyFiles.bat
ben marsh d6ee4d73ed Suppress message when fixing Slate png case. Users don't need to know about this.
#rb none
#rnx
#jira

#ROBOMERGE-OWNER: ryan.vance
#ROBOMERGE-AUTHOR: ben.marsh
#ROBOMERGE-SOURCE: CL 4957421 in //UE4/Release-4.22/... via CL 4968452
#ROBOMERGE-BOT: DEVVR (Main -> Dev-VR)

[CL 5030956 by ben marsh in Dev-VR branch]
2019-02-16 05:55:30 -05:00

6 lines
329 B
Batchfile

@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