mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 02:00:20 +00:00
Trying Windows fix, removing $() on env:TEMP
This commit is contained in:
parent
00c45646d3
commit
c7e18526f6
1 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ if ( $install_build_tools ) {
|
|||
Start-Process -FilePath "certutil" `
|
||||
-ArgumentList "-addstore", `
|
||||
"Root", `
|
||||
"$($env:TEMP)\build_tools\certificates\manifestCounterSignRootCertificate.cer" `
|
||||
"$env:TEMP\build_tools\certificates\manifestCounterSignRootCertificate.cer" `
|
||||
-Wait -WindowStyle Hidden
|
||||
if ( Test-Path -Path Cert:\LocalMachine\Root\3b1efd3a66ea28b16697394703a72ca340a05bd5 ) {
|
||||
Write-Result "Success" -ForegroundColor Green
|
||||
|
@ -138,7 +138,7 @@ if ( $install_build_tools ) {
|
|||
Start-Process -FilePath "certutil" `
|
||||
-ArgumentList "-addstore", `
|
||||
"Root", `
|
||||
"$($env:TEMP)\build_tools\certificates\manifestRootCertificate.cer" `
|
||||
"$env:TEMP\build_tools\certificates\manifestRootCertificate.cer" `
|
||||
-Wait -WindowStyle Hidden
|
||||
if ( Test-Path -Path Cert:\LocalMachine\Root\8f43288ad272f3103b6fb1428485ea3014c0bcfe ) {
|
||||
Write-Result "Success" -ForegroundColor Green
|
||||
|
|
Loading…
Add table
Reference in a new issue