Fix the Windows Make script

This commit is contained in:
penev92
2015-05-02 14:04:29 +03:00
parent 3bd4a97d11
commit ccd5a56fdb

View File

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