Files
UnrealEngineUWP/Engine/Build/BatchFiles/FixDependencyFiles.bat
Joakim Lindqvist 31de091d17 Fixed issue in batch scripts were directory to batch script was not quoted and as such would cause issue when special characters was part of the path.
#jira UE-71740
#fyi ben.marsh

[CL 6795995 by Joakim Lindqvist in Dev-Build branch]
2019-06-03 09:03:05 -04:00

10 lines
432 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