mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2026-01-06 18:17:26 +08:00
Cleanup old markdown documenation approach (#979)
This commit is contained in:
committed by
GitHub
parent
8c8f384a61
commit
43e26fa96b
@@ -16,31 +16,12 @@ else
|
||||
|
||||
if ($env:VCPKG_INSTALLATION_ROOT)
|
||||
{
|
||||
Write-Host "The VCPKG_INSTALLATION_ROOT environment variable is set"
|
||||
Write-Host 'The VCPKG_INSTALLATION_ROOT environment variable is set'
|
||||
Write-Host $env:VCPKG_INSTALLATION_ROOT
|
||||
}
|
||||
else
|
||||
{
|
||||
Write-Host "The VCPKG_INSTALLATION_ROOT environment variable is not set"
|
||||
Write-Host 'The VCPKG_INSTALLATION_ROOT environment variable is not set'
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Adding description of the software to Markdown
|
||||
|
||||
# `vcpkg version` gives output like:
|
||||
# Vcpkg package management program version 2018.11.23-nohash
|
||||
#
|
||||
# See LICENSE.txt for license information.
|
||||
|
||||
$SoftwareName = 'Vcpkg'
|
||||
$(vcpkg version).Split([System.Environment]::NewLine)[0] -match "\d+.\d+.\d+.*"
|
||||
$VcpkgVersion = $Matches[0]
|
||||
|
||||
$Description = @"
|
||||
_Version:_ $VcpkgVersion<br/>
|
||||
_Environment:_
|
||||
* PATH: contains location of the vcpkg directory
|
||||
* VCPKG_INSTALLATION_ROOT: root directory of the vcpkg installation
|
||||
"@
|
||||
|
||||
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|
||||
|
||||
Reference in New Issue
Block a user