Fix case error for CI.ps1 on Linux

This commit is contained in:
jhoneill
2019-12-08 13:16:54 +00:00
parent 65754d27cc
commit 88e0a449c7
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ if (-not $VersionFilePath) {
'[Info] Testing On:'
Get-EnvironmentInfo
'[Progress] Installing Module.'
. .\ci\Install.ps1
. .\CI\Install.ps1
'[Progress] Invoking Pester.'
Invoke-Pester -OutputFile ('TestResultsPS{0}.xml' -f $PSVersionTable.PSVersion)
}

View File

@@ -17,7 +17,7 @@ jobs:
vmImage: 'windows-latest'
steps:
- powershell: 'Install-Module -Name Pester -Force -SkipPublisherCheck'
displayName: 'Update Modules'
displayName: 'Update Pester'
- powershell: './CI/PS-CI.ps1 '
displayName: 'Check Build Check Pack Test'
- task: PublishTestResults@2