Files
UnrealEngineUWP/Engine/Build/BatchFiles/FixDependencyFiles.bat
ben marsh c4e3277b33 Fix warning when generating project files in a minimal workspace (due to no documentation folder).
#rb none
#jira

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

[CL 5269085 by ben marsh in Dev-VR branch]
2019-03-01 15:19:07 -05:00

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