Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
the-database committed Jul 26, 2024
1 parent 6465275 commit 57289dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BuildMpvUpscale2xAnimeJaNai/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,14 @@ void InstallAnimeJaNaiCore()

void Cleanup()
{
List<string> dirs = ["doc", "vs-temp-dl"];
List<string> dirs = ["doc", "vs-temp-dl", "Scripts", "sdk", "wheel"];

foreach (string dir in dirs)
{
var targetDir = Path.Combine(installDirectory, dir);
if (Directory.Exists(targetDir))
{
Directory.Delete(dir, true);
Directory.Delete(targetDir, true);
}
}
}
Expand Down

0 comments on commit 57289dc

Please sign in to comment.