mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
20 lines
409 B
PowerShell
20 lines
409 B
PowerShell
[CmdletBinding()]
|
|
param()
|
|
|
|
. $PSScriptRoot\PathHelpers.ps1
|
|
. $PSScriptRoot\InstallHelpers.ps1
|
|
. $PSScriptRoot\MarkdownHelpers.ps1
|
|
|
|
Export-ModuleMember -Function @(
|
|
'Test-MachinePath'
|
|
'Get-MachinePath'
|
|
'Set-MachinePath'
|
|
'Add-MachinePathItem'
|
|
'Get-SystemVariable'
|
|
'Set-SystemVariable'
|
|
'Install-MSI'
|
|
'Install-EXE'
|
|
'Add-ContentToMarkdown'
|
|
'Add-SoftwareDetailsToMarkdown'
|
|
)
|