Files
UnrealEngineUWP/Engine/Build/BatchFiles/FixDependencyFiles.bat
Ben Marsh 99be00dcdb Merging latest from Private-Starship.
[CL 13192225 by Ben Marsh in ue5-main branch]
2020-05-05 18:50:52 -04:00

10 lines
432 B
Batchfile
Executable File

@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