Skip to content

Commit e7835e3

Browse files
adityapatwardhanSean Wheeler
authored and
Sean Wheeler
committed
Creates output directory as pandoc needs it (#2018)
1 parent f2f819f commit e7835e3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

appveyor.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ Get-ChildItem $ReferenceDocset -Directory -Exclude 'docs-conceptual','mapping',
3737
$MamlOutputFolder = Join-Path "$PSScriptRoot\maml" "$Version\$ModuleName"
3838
$CabOutputFolder = Join-Path "$PSScriptRoot\updatablehelp" "$Version\$ModuleName"
3939

40+
if(-not (Test-Path $MamlOutputFolder))
41+
{
42+
New-Item $MamlOutputFolder -ItemType Directory -Force > $null
43+
}
44+
4045
# Process the about topics if any
4146
$AboutFolder = Join-Path $ModulePath "About"
4247

0 commit comments

Comments
 (0)