Differences From Artifact [5fc8095c21]:
- File runconfig.scm — part of check-in [77627223bc] at 2021-02-02 23:34:16 on branch v1.6569-multi-db — Added commonmod to all units (user: matt, size: 6179) [annotate] [blame] [check-ins using] [more...]
To Artifact [919d2439b4]:
- File attic_modular/runconfig.scm — part of check-in [5d8e30ec14] at 2021-03-06 04:45:53 on branch v1.65-real-chicken-5 — wip (user: matt, size: 6227) [annotate] [blame] [check-ins using]
- File runconfig.scm — part of check-in [219180af64] at 2021-02-27 11:33:46 on branch v1.65-real-new-runs-view-wip3 — wip (user: matt, size: 6227) [annotate] [blame] [check-ins using]
︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | + + | (use format directory-utils) (declare (unit runconfig)) (declare (uses common)) (declare (uses commonmod)) (declare (uses debugprint)) (import commonmod) (import debugprint) (include "common_records.scm") (define (runconfig:read fname target environ-patt) (let ((ht (make-hash-table))) (if target (hash-table-set! ht target '())) (read-config fname ht #t environ-patt: environ-patt sections: (if target (list "default" target) #f)))) |
︙ |