You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#lockdown: Nick.Penwarden #rb integration #ROBOMERGE-OWNER: ryan.gerleve #ROBOMERGE-AUTHOR: joe.barnes #ROBOMERGE-SOURCE: CL 4825156 in //UE4/Main/... #ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking) [CL 4828298 by James Hopkin in Dev-Networking branch]
8 lines
374 B
Batchfile
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 |