Merge pull request #13109 from abcdefg30/clean

Fix the make.ps1 clean command not removing all files
This commit is contained in:
reaperrr
2017-04-12 19:13:47 +02:00
committed by GitHub

View File

@@ -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