mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-27 06:14:09 +00:00
Switch to Python implementation of SymStore
This commit is contained in:
parent
f98cb67cad
commit
327f977ae6
@ -40,15 +40,13 @@ finally
|
||||
Pop-Location
|
||||
}
|
||||
|
||||
$windowsSDKFolder = Get-ItemPropertyValue "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0" InstallationFolder
|
||||
|
||||
try
|
||||
if (-not (Test-Path symstore-venv))
|
||||
{
|
||||
$responseFile = New-TemporaryFile
|
||||
$artifacts | Set-Content $responseFile
|
||||
& "$windowsSDKFolder\debuggers\x64\symstore.exe" add /f @$responseFile /s .\SymStore /compress /t "I don't know why /t is needed"
|
||||
python -m venv symstore-venv
|
||||
}
|
||||
finally
|
||||
if (-not (Test-Path symstore-venv\Scripts\symstore.exe))
|
||||
{
|
||||
Remove-Item $responseFile
|
||||
symstore-venv\Scripts\pip install symstore==0.3.3
|
||||
}
|
||||
$artifacts = $artifacts | Where-Object { Test-Path $_ }
|
||||
symstore-venv\Scripts\symstore --compress .\SymStore @artifacts
|
||||
|
Loading…
Reference in New Issue
Block a user