clean Windows dependencies as well

This commit is contained in:
Matthias Mailänder
2015-05-01 11:53:01 +02:00
parent 30a0eb6082
commit 7cef5cfbfd
2 changed files with 4 additions and 1 deletions

View File

@@ -71,8 +71,10 @@ elseif ($command -eq "clean")
else
{
$proc = Start-Process $msBuild $msBuildArguments -NoNewWindow -PassThru -Wait
rm *.dll # delete third party dependencies
rm *.dll
rm *.config
rm thirdparty/*.dll
rmdir thirdparty/windows/
rm mods/*/*.dll
echo "Clean complete."
}