We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb510c commit 9128277Copy full SHA for 9128277
scripts/build/windows/signtool.ps1
@@ -39,7 +39,10 @@ foreach ($d in $dir) {
39
$leaf = $d.FullName.split("\")[-1]
40
41
$version = $leaf -replace ".","" -as [int]
42
+ Write-Host "Version: $($version)"
43
44
+ Write-Host "CMP: $($version) $($newest_version)"
45
+ Write-Host "CMP: $($version.getType()) $($newest_version.getType())"
46
if ($version -gt $newest_version) {
47
$newest_version = $version
48
$newest_version_path = $d.FullName
@@ -58,5 +61,4 @@ $cert_bytes = [Convert]::FromBase64String($cert_base64)
58
61
59
62
# Import Cert
60
63
certutil -f -p $cert_passwd -importpfx $certificate
-Set-Location Cert:\CurrentUser\My
-Get-ChildItem | Format-Table FriendlyName, Thumbprint, Subject
64
+Set-Location Cert:\CurrentUser\My
0 commit comments