You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none
#jira
#ROBOMERGE-SOURCE: CL 5259512 in //UE4/Release-4.22/...
#ROBOMERGE-BOT: RELEASE (Release-4.22 -> Main)
[CL 5259514 by ben marsh in Main branch]
10 lines
430 B
Batchfile
10 lines
430 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"
|
|
|
|
if not exist Documentation\Source\Shared\Icons goto no_documentation_icons
|
|
for /f "tokens=*" %%X in ('dir /b /s /a:-d Documentation\Source\Shared\Icons\*.PNG') do ren "%%X" "%%~nX.png"
|
|
:no_documentation_icons
|
|
|
|
popd |