Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: everSome on October 02, 2022, 08:15:27 pm

Title: src/update.bat change typo
Post by: everSome 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
Title: Re: src/update.bat change typo
Post by: Miguel Gimenez on October 02, 2022, 08:25:56 pm
Fixed in r12938, thankk you.