(FS)
| 73 | ); |
| 74 | |
| 75 | function fsInit(FS) { |
| 76 | const mounts = dirsToMount(); |
| 77 | for (const mount of mounts) { |
| 78 | FS.mkdirTree(mount); |
| 79 | FS.mount(FS.filesystems.NODEFS, { root: mount }, mount); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | function patchPlatformForUv(py) { |
| 84 | // UV uses sysconfig configs to determine platform details when installing |
no test coverage detected
searching dependent graphs…