chore: remove more iw4x stuff

This commit is contained in:
alterware
2025-06-30 18:27:03 +02:00
parent 6f241dffe2
commit a30d6950c8
9 changed files with 16 additions and 147 deletions

View File

@@ -15,7 +15,7 @@ pub fn save_cache(dir: &Path, cache: Cache) {
let cache_path = dir.join("awcache.json");
let cache_serialized = serde_json::to_string_pretty(&cache).unwrap();
fs::write(cache_path, cache_serialized).unwrap_or_else(|e| {
error!("Failed to save cache: {}", e);
error!("Failed to save cache: {e}");
});
}