Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Correct use of 'find.exe' by the batch tools. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
03db10a5641f2dfa41db0a824fca8e34 |
User & Date: | mistachkin 2015-10-02 18:05:44 |
Context
2015-10-02
| ||
19:21 | Update Eagle script library in externals to the latest code. check-in: ada723a97c user: mistachkin tags: trunk | |
18:05 | Correct use of 'find.exe' by the batch tools. check-in: 03db10a564 user: mistachkin tags: trunk | |
2015-10-01
| ||
19:33 | Pickup more upstream Eagle test suite changes. check-in: 52f30da149 user: mistachkin tags: trunk | |
Changes
Changes to Setup/archive.bat.
39 39 %__ECHO2% PUSHD "%ROOT%" 40 40 41 41 IF ERRORLEVEL 1 ( 42 42 ECHO Could not change directory to "%ROOT%". 43 43 GOTO errors 44 44 ) 45 45 46 -FOR /F "delims=" %%V IN ('find.exe "AssemblyVersion" System.Data.SQLite\AssemblyInfo.cs') DO ( 46 +FOR /F "delims=" %%V IN ('TYPE System.Data.SQLite\AssemblyInfo.cs ^| find.exe "AssemblyVersion"') DO ( 47 47 SET VERSION=%%V 48 48 ) 49 49 50 50 IF NOT DEFINED VERSION ( 51 51 SET VERSION=1.0.0.0 52 52 GOTO skip_mungeVersion 53 53 )
Changes to Setup/release.bat.
131 131 %__ECHO2% PUSHD "%ROOT%" 132 132 133 133 IF ERRORLEVEL 1 ( 134 134 ECHO Could not change directory to "%ROOT%". 135 135 GOTO errors 136 136 ) 137 137 138 -FOR /F "delims=" %%V IN ('find.exe "AssemblyVersion" System.Data.SQLite\AssemblyInfo.cs') DO ( 138 +FOR /F "delims=" %%V IN ('TYPE System.Data.SQLite\AssemblyInfo.cs ^| find.exe "AssemblyVersion"') DO ( 139 139 SET VERSION=%%V 140 140 ) 141 141 142 142 IF NOT DEFINED VERSION ( 143 143 SET VERSION=1.0.0.0 144 144 GOTO skip_mungeVersion 145 145 )