Author Topic: Typo in rev11729 makes update.bat fail  (Read 3872 times)

Offline Miguel Gimenez

  • Developer
  • Lives here!
  • *****
  • Posts: 1553
Typo in rev11729 makes update.bat fail
« 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.
« Last Edit: June 10, 2019, 12:57:25 pm by Miguel Gimenez »

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Typo in rev11729 makes update.bat fail
« Reply #1 on: June 10, 2019, 09:23:53 pm »
Should be fixed when this batch of commits gets to svn.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]