Author Topic: src/update.bat change typo  (Read 2144 times)

Offline everSome

  • Multiple posting newcomer
  • *
  • Posts: 34
src/update.bat change typo
« on: October 02, 2022, 08:15:27 pm »
The new function at the end of src/update.bat, namely

:copySvgFiles - create a directory and copy avg files to it
setlocal
echo Copy svg files from %~1 to %~1
call:mkdirSilent %~2\svg
xcopy /D /y %~1\svg\*.svg %~2\svg > nul
endlocal
GOTO:EOF

would seem to have a typo in the echo line, perhaps it should be:

echo Copy svg files from %~1 to %~2

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1553
Re: src/update.bat change typo
« Reply #1 on: October 02, 2022, 08:25:56 pm »
Fixed in r12938, thankk you.