(root: &Path, image_identity: &str)
| 4279 | } |
| 4280 | |
| 4281 | fn image_cache_rootfs_image(root: &Path, image_identity: &str) -> PathBuf { |
| 4282 | image_cache_dir(root, image_identity).join(IMAGE_CACHE_ROOTFS_IMAGE) |
| 4283 | } |
| 4284 | |
| 4285 | fn image_cache_staging_dir(root: &Path, image_identity: &str) -> PathBuf { |
| 4286 | image_cache_root_dir(root).join(format!( |
no test coverage detected