From 39cdf657647b879d6b71063a1db223ee281c5e56 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Tue, 11 Apr 2017 15:10:33 +0200 Subject: [PATCH] Fix the make.ps1 clean command not removing all files --- make.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/make.ps1 b/make.ps1 index cfde718c8b..176c670959 100644 --- a/make.ps1 +++ b/make.ps1 @@ -42,6 +42,9 @@ function Clean-Command rm mods/*/*.dll rm *.pdb rm mods/*/*.pdb + rm *.exe + rm ./*/bin -r + rm ./*/obj -r if (Test-Path thirdparty/download/) { rmdir thirdparty/download -Recurse -Force