Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Correct minor usage problem with the %_ECHO% 'macro' in the batch tools. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
bfd8d6874d6774296197cd525e1f123f |
User & Date: | mistachkin 2011-11-16 05:13:53.409 |
Context
2011-11-23
| ||
02:40 | Cleanup two tests that were leaking variables and/or objects. check-in: ec423e6d9e user: mistachkin tags: trunk | |
2011-11-16
| ||
05:13 | Correct minor usage problem with the %_ECHO% 'macro' in the batch tools. check-in: bfd8d6874d user: mistachkin tags: trunk | |
03:21 | Make sure people who read the news page realize that release 77 is still pending (i.e. it has not yet been released). check-in: a663cc116d user: mistachkin tags: trunk | |
Changes
Changes to Setup/archive.bat.
︙ | ︙ | |||
62 63 64 65 66 67 68 | :skip_mungeVersion %_VECHO% Version = '%VERSION%' CALL :fn_ResetErrorLevel | | | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | :skip_mungeVersion %_VECHO% Version = '%VERSION%' CALL :fn_ResetErrorLevel IF NOT EXIST Setup\Output ( %_ECHO% MKDIR Setup\Output IF ERRORLEVEL 1 ( ECHO Could not create directory "Setup\Output". GOTO errors ) ) |
︙ | ︙ |
Changes to Setup/release.bat.
︙ | ︙ | |||
143 144 145 146 147 148 149 | :skip_mungeVersion %_VECHO% Version = '%VERSION%' CALL :fn_ResetErrorLevel | | | | 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | :skip_mungeVersion %_VECHO% Version = '%VERSION%' CALL :fn_ResetErrorLevel IF NOT EXIST Setup\Output ( %_ECHO% MKDIR Setup\Output IF ERRORLEVEL 1 ( ECHO Could not create directory "Setup\Output". GOTO errors ) ) |
︙ | ︙ |