We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2d97e3 commit b3d45f3Copy full SHA for b3d45f3
.github/workflows/Rebuild Docs.yaml
@@ -78,7 +78,9 @@ jobs:
78
$BaseName = "$((Get-Item (Split-Path $($F.DirectoryName))).BaseName)/Functions"
79
}
80
81
- Write-Host "Moving $($DocToFind) to ./docs/$($BaseName)/"
+ if (-not (Test-Path "./docs/$($BaseName)")) {
82
+ New-Item -ItemType Directory "./docs/$($BaseName)"
83
+ }
84
Move-Item "$($DocToFind)" "./docs/$($BaseName)/" -Force
85
86
0 commit comments