Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: Miguel Gimenez on June 10, 2019, 12:39:38 pm

Title: Typo in rev11729 makes update.bat fail
Post by: Miguel Gimenez on June 10, 2019, 12:39:38 pm
The change to update.bat in revision 11729 missed a quote in the line that copies cb_console_runner.exe:

Code
copy "%CB_DEVEL_DIR%\cb_console_runner.exe "%CB_OUTPUT_DIR%\cb_console_runner.exe" > nul

This generates an invalid path error, and should be:

Code
copy "%CB_DEVEL_DIR%\cb_console_runner.exe" "%CB_OUTPUT_DIR%\cb_console_runner.exe" > nul

I have attached a patch (this patch also corrects some LF line endings).

Revision 11729 also makes my ticket 824 obsolete, please close it.
Title: Re: Typo in rev11729 makes update.bat fail
Post by: oBFusCATed on June 10, 2019, 09:23:53 pm
Should be fixed when this batch of commits gets to svn.