Overview
Comment: | added nice-path to declarations in commonmod.scm to fix itemwait test. Changed #f to for null log file to prevent type mismatch warning |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.90 |
Files: | files | file ages | folders |
SHA1: |
b7ea5abf1a38690c965bc83d69a61177 |
User & Date: | mmgraham on 2024-02-23 17:40:07 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-26
| ||
11:31 | Changed a print from debug 0 to 4 check-in: 644eb3c1e4 user: mmgraham tags: v1.90 | |
2024-02-23
| ||
17:40 | added nice-path to declarations in commonmod.scm to fix itemwait test. Changed #f to for null log file to prevent type mismatch warning check-in: b7ea5abf1a user: mmgraham tags: v1.90 | |
2024-02-16
| ||
16:06 | Added (use json) to mtbody.scm to fix envsetup check-in: 2765970d14 user: mmgraham tags: v1.90 | |
Changes
Modified commonmod.scm from [979dffa1a9] to [08c8b5bc17].
︙ | |||
144 145 146 147 148 149 150 151 152 153 154 155 156 157 | 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | + | common:list-or-null common:logpro-exit-code->status-sym common:low-noise-print common:make-tmpdir-name common:max common:min-max common:nice-path nice-path common:pkts-spec common:raw-get-remote-host-load common:read-encoded-string common:real-path common:send-thunk-to-background-thread common:simple-file-lock common:simple-file-lock-and-wait |
︙ |
Modified mtbody.scm from [7f837d24f5] to [51e1a31285].
︙ | |||
302 303 304 305 306 307 308 | 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | - + | (define *didsomething* #t) (exit 1))))) (define (main) ;; remove when configf fully modularized (read-config-set! configf:read-file) |
︙ | |||
325 326 327 328 329 330 331 | 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | - - + + - + | ;; (let ((debugcontrolf (conc (get-environment-variable "HOME") "/.megatestrc"))) (if (common:file-exists? debugcontrolf) (load debugcontrolf))) ;; usage logging, careful with this, it is not designed to deal with all real world challenges! ;; |
︙ |