Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
trippjoe authored Oct 4, 2024
1 parent 39ba380 commit df2e757
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src-tauri/src/commands/game.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub async fn uninstall_game(
log::error!("Failed to delete directory: {:?}", e);
Err(e)
}
}
},
}?;

match std::fs::remove_dir_all(data_folder.join("iso_data")) {
Expand All @@ -55,7 +55,7 @@ pub async fn uninstall_game(
log::error!("Failed to delete directory: {:?}", e);
Err(e)
}
}
},
}?;

match std::fs::remove_dir_all(data_folder.join("out")) {
Expand All @@ -66,7 +66,7 @@ pub async fn uninstall_game(
log::error!("Failed to delete directory: {:?}", e);
Err(e)
}
}
},
}?;

config_lock
Expand Down

0 comments on commit df2e757

Please sign in to comment.