[Windows] Fix markdown in the software report (#4587)

This commit is contained in:
V-Zabayrachny
2021-12-03 00:33:38 +03:00
committed by GitHub
parent ca8169d472
commit d12aeab69c
3 changed files with 9 additions and 17 deletions

View File

@@ -310,7 +310,7 @@ function Get-PacmanVersion {
$rawVersion = & $pacmanPath --version
$rawVersion.Split([System.Environment]::NewLine)[1] -match "\d+\.\d+(\.\d+)?" | Out-Null
$pacmanVersion = $matches[0]
return "- Pacman $pacmanVersion"
return "Pacman $pacmanVersion"
}
function Get-YAMLLintVersion {
@@ -319,7 +319,7 @@ function Get-YAMLLintVersion {
function Get-BizTalkVersion {
$bizTalkReg = Get-ItemProperty "HKLM:\SOFTWARE\WOW6432Node\Microsoft\BizTalk Server\3.0"
return "- $($bizTalkReg.ProductName) $($bizTalkReg.ProductVersion) "
return "$($bizTalkReg.ProductName) $($bizTalkReg.ProductVersion)"
}
function Get-PipxVersion {