File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -58,4 +58,4 @@ test_script:
58
58
59
59
# Upload the project along with test results as a zip archive
60
60
on_finish :
61
- - ps : Import-Module . \tools\appveyor.psm1; Invoke-AppveyorFinish
61
+ - ps : Import-Module "${env:BuildConfiguration} \tools\appveyor.psm1" ; Invoke-AppveyorFinish
Original file line number Diff line number Diff line change @@ -98,7 +98,9 @@ function Build-Documentation
98
98
# if ( $null -eq (Get-Module -ListAvailable -FullyQualifiedName $modInfo))
99
99
if ( $null -eq (Get-Module - ListAvailable platyPS))
100
100
{
101
- throw " Cannot find required minimum version $requiredVersionOfplatyPS of platyPS. Install via 'Install-Module platyPS'"
101
+ Write-Verbose - verbose " platyPS not found, installing"
102
+ Install-Module - Force - Name platyPS - Scope CurrentUser
103
+ # throw "Cannot find required minimum version $requiredVersionOfplatyPS of platyPS. Install via 'Install-Module platyPS'"
102
104
}
103
105
if (-not (Test-Path $markdownDocsPath ))
104
106
{
You can’t perform that action at this time.
0 commit comments