From 73a0829a63e0bacd9a9b667e6e8bf6d352958a36 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Thu, 1 Oct 2020 14:26:51 +0200 Subject: [PATCH] fix typo --- appveyor.yml | 2 +- tools/AppVeyor.psm1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a68a30f..e157170 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,7 +11,7 @@ cache: skip_tags: true -image: Visual Studio 2017 +image: Visual Studio 2019 # Install pester module and init the Appveyor support. diff --git a/tools/AppVeyor.psm1 b/tools/AppVeyor.psm1 index 1882f1f..26d8b38 100644 --- a/tools/AppVeyor.psm1 +++ b/tools/AppVeyor.psm1 @@ -49,7 +49,7 @@ Function Invoke-AppVeyorBumpVersion() { Write-Host "Listing Env Vars for debugging:" -ForegroundColor Black -BackgroundColor Yellow # Filter Results to prevent exposing secure vars. - Get-ChildItem -Path "Env:*" | Where-Object { $_.name -notmatch "(NuGetToken|CoverallsToken)" } | Sort-Object -Property Name | Format-Table + Get-ChildItem -Path "Env:*" | Where-Object { $_.name -notmatch "(NuGetToken|CoverallsToken|CodeCovToken)" } | Sort-Object -Property Name | Format-Table Try { $ModManifest = Get-Content -Path (".\src\{0}.psd1" -f $CALLSIGN)