Differences From Artifact [c2d21d64d9]:
- File dbfile.scm — part of check-in [5a507eea4f] at 2023-05-13 22:37:15 on branch v1.80 — Remove traces of inmem (user: matt, size: 54809) [annotate] [blame] [check-ins using]
To Artifact [10490588b1]:
- File dbfile.scm — part of check-in [9a780869ba] at 2023-05-14 20:36:20 on branch v1.80 — Formalize /tmp directory creation for consistent usage and ultimately to accomodate second sync to dashboard on readonly (user: matt, size: 54987) [annotate] [blame] [check-ins using]
︙ | |||
196 197 198 199 200 201 202 203 204 205 206 207 208 209 | 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | + + + + | subdbs) #t ) #f ) ) (define (dbfile:make-tmpdir-name areapath) (let* ((dname (conc "/tmp/"(current-user-name)"/" (string-translate areapath "/" ".")))) (create-directory dname #t) dname)) (define (dbfile:run-id->path apath run-id) (conc apath"/"(dbfile:run-id->dbname run-id))) (define (db:dbname->path apath dbname) (conc apath"/"dbname)) |
︙ |