chore: linting

This commit is contained in:
zhom
2026-02-24 06:31:24 +04:00
parent 8b83ece7be
commit e2fa6f2c5f
+1 -1
View File
@@ -16,7 +16,7 @@ fn get_ephemeral_base_dir() -> Result<PathBuf, String> {
let base = PathBuf::from("/dev/shm/donut-ephemeral");
std::fs::create_dir_all(&base)
.map_err(|e| format!("Failed to create ephemeral base in /dev/shm: {e}"))?;
return Ok(base);
Ok(base)
}
#[cfg(not(target_os = "linux"))]