Skip to content

Commit

Permalink
fix: Recursively delete directories when cleaning-up previous install
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Nov 8, 2024
1 parent 37c133c commit db251d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ private static async Task DownloadStudio() {
continue;
}

File.Delete(file);
Directory.Delete(file, recursive: true);
}

// Setup new install
Expand Down

0 comments on commit db251d8

Please sign in to comment.