Skip to content

Commit

Permalink
dont error if splat doesnt exist
Browse files Browse the repository at this point in the history
  • Loading branch information
dankmeme01 committed Jul 14, 2024
1 parent 734ea12 commit 7780d07
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sdk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -807,8 +807,7 @@ fn install_linux(
if get_winsdk {
info!("Installing Windows SDK to {splat_path:?}");

std::fs::remove_dir_all(&splat_path)
.nice_unwrap("Failed to delete existing splat directory");
let _ = std::fs::remove_dir_all(&splat_path);

let mut cmd = std::process::Command::new(xwin_exe_path);

Expand Down

0 comments on commit 7780d07

Please sign in to comment.