Merge pull request #8079 from penev92/bleed_make
Fix the Windows Make script
This commit is contained in:
7
make.ps1
7
make.ps1
@@ -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."
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user