Merge pull request #8079 from penev92/bleed_make

Fix the Windows Make script
This commit is contained in:
Matthias Mailänder
2015-05-02 18:45:51 +02:00

View File

@@ -73,9 +73,12 @@ elseif ($command -eq "clean")
$proc = Start-Process $msBuild $msBuildArguments -NoNewWindow -PassThru -Wait
rm *.dll
rm *.config
rm thirdparty/*.dll
rmdir thirdparty/windows/
rm mods/*/*.dll
rm thirdparty/*.dll
if(Test-Path -Path thirdparty/windows/)
{
rmdir thirdparty/windows/ -Recurse
}
echo "Clean complete."
}
}