From 19f37147300238576004fdd230ff7c965e525a7a Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 26 Aug 2020 14:31:54 +0200 Subject: [PATCH] fix powershellget syntax for alternate build image --- tools/AppVeyor.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/AppVeyor.psm1 b/tools/AppVeyor.psm1 index 80f81b8..3e2e532 100644 --- a/tools/AppVeyor.psm1 +++ b/tools/AppVeyor.psm1 @@ -23,7 +23,7 @@ Function Invoke-InstallDependencies() { Import-PackageProvider -Name NuGet -RequiredVersion '2.8.5.208' -Force Write-Host 'Installing build deps...' -ForegroundColor Red -BackgroundColor Black Install-Module -Name 'Pester' -Scope CurrentUser -RequiredVersion '4.10.1' -Force -SkipPublisherCheck -AllowClobber -Verbose - Install-Module -Name 'posh-git' -Scope CurrentUser -RequiredVersion '0.7.3' -Force -SkipPublisherCheck -AllowClobber -AllowPrerelease + Install-Module -Name 'posh-git' -Scope CurrentUser -RequiredVersion '0.7.3' -Force -SkipPublisherCheck -AllowClobber Install-Module -Name 'PSCoverage' -Scope CurrentUser -Force -SkipPublisherCheck -AllowClobber -RequiredVersion '1.1.89' -Verbose Import-Module -Name 'posh-git' Remove-Module -Name 'Pester' -Force -ErrorAction SilentlyContinue