Overview
Comment: | Added ezsteps.status file to tests with ezsteps |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 |
Files: | files | file ages | folders |
SHA1: |
35ad12134a4f8c39b669bfb583dacd5a |
User & Date: | mmgraham on 2022-03-17 09:06:22 |
Other Links: | branch diff | manifest | tags |
Context
2022-03-19
| ||
17:38 | Fixed behavior when disks are non-existent. https://hsdes.intel.com/appstore/article/#/14015976511 check-in: e96d85c5b3 user: mmgraham tags: v1.65 | |
2022-03-17
| ||
09:06 | Added ezsteps.status file to tests with ezsteps check-in: 35ad12134a user: mmgraham tags: v1.65 | |
2022-03-09
| ||
19:15 | Changed version to 1.6591 check-in: 3fd0df6722 user: mmgraham tags: v1.65, v1.6591 | |
Changes
Modified launch.scm from [b68aa073b9] to [1f3f892cd5].
︙ | |||
171 172 173 174 175 176 177 | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | - + + + + + + - + + + + + | ;; process the ezsteps (if ezsteps (let* ((all-steps-dat (make-hash-table))) ;; keep all the info around as stepname ==> alist; where 'params is the params list (add other stuff as needed) (if (not (common:file-exists? ".ezsteps"))(create-directory ".ezsteps")) ;; if ezsteps was defined then we are sure to have at least one step but check anyway (if (not (> (length ezstepslst) 0)) (debug:print-error 0 *default-log-port* "ezsteps defined but ezstepslst is zero length") |
︙ |