Files
UnrealEngineUWP/Engine/Build/BatchFiles/FixDependencyFiles.bat
ben marsh 5be527253d Fix warning when generating project files in a minimal workspace (due to no documentation folder).
#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]
2019-03-01 01:31:42 -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