We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00a68f3 commit 31fedecCopy full SHA for 31fedec
1 file changed
.github/workflows/actions/sign-files/action.yml
@@ -71,7 +71,7 @@ runs:
71
$process = Start-Process msiexec -ArgumentList '/i', 'smtools-windows-x64.msi', '/quiet', '/qn', '/log', 'smtools-windows-x64.log' -Wait -PassThru
72
if ($process.ExitCode -ne 0) {
73
Write-Output "::error title=Install Error::msiexec failed with exit code $($process.ExitCode)"
74
- Get-Content smtools-windows-x64.log -Tail 50
+ if (Test-Path smtools-windows-x64.log) { Get-Content smtools-windows-x64.log -Tail 50 }
75
exit 1
76
}
77
# Verify smctl is actually on disk before declaring success
0 commit comments