Chocolatey Helper (#646)

* Add basic choco install wrapper

* Use Install-Choco on mingw

* move azure-cli install to defence

* Rename ChocoInstall to ChocoHelpers
This commit is contained in:
Luke Duddridge
2020-04-14 06:51:57 +01:00
committed by GitHub
parent 20515c4206
commit 44e904205f
6 changed files with 40 additions and 4 deletions

View File

@@ -4,6 +4,7 @@ param()
. $PSScriptRoot\PathHelpers.ps1
. $PSScriptRoot\InstallHelpers.ps1
. $PSScriptRoot\MarkdownHelpers.ps1
. $PSScriptRoot\ChocoHelpers.ps1
Export-ModuleMember -Function @(
'Test-MachinePath'
@@ -26,4 +27,5 @@ Export-ModuleMember -Function @(
'Get-WinVersion'
'Test-IsWin19'
'Test-IsWin16'
'Install-Choco'
)