use std::path::Path;
use crate::{MicrosandboxError, MicrosandboxResult};
use microsandbox_utils::MSB_BINARY;
pub(super) fn verify_installation(bin_dir: &Path, lib_dir: &Path) -> MicrosandboxResult<()> {
let libkrunfw_name = microsandbox_utils::libkrunfw_filename(std::env::consts::OS);
for (name, dir) in [(MSB_BINARY, bin_dir), (libkrunfw_name.as_str(), lib_dir)] {
let path = dir.join(name);
if !path.exists() {
return Err(MicrosandboxError::Custom(format!(
"{name} not found in {}",
dir.display()
)));
}
}
Ok(())
}