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 7ab55c4 commit 924f8bfCopy full SHA for 924f8bf
scripts/main.ps1
@@ -25,9 +25,9 @@ Write-Host "Module name: [$moduleName]"
25
$moduleSourceFolderPath = Resolve-Path -Path 'src' | Select-Object -ExpandProperty Path
26
Write-Host "Module source path: [$moduleSourceFolderPath]"
27
28
-$modulesOutputFolderPath = New-Item -Path 'outputs/module' -Force
+$modulesOutputFolderPath = Resolve-Path -Path 'outputs/module' | Select-Object -ExpandProperty Path
29
Write-Host "Module output path: [$modulesOutputFolderPath]"
30
-$docsOutputFolderPath = New-Item -Path 'outputs/docs' -Force
+$docsOutputFolderPath = Resolve-Path -Path 'outputs/docs' | Select-Object -ExpandProperty Path
31
Write-Host "Docs output path: [$docsOutputFolderPath]"
32
33
$params = @{
0 commit comments