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 924f8bf commit f93eb7cCopy full SHA for f93eb7c
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 = Resolve-Path -Path 'outputs/module' | Select-Object -ExpandProperty Path
+$modulesOutputFolderPath = Join-Path -Path . -ChildPath 'outputs/module'
29
Write-Host "Module output path: [$modulesOutputFolderPath]"
30
-$docsOutputFolderPath = Resolve-Path -Path 'outputs/docs' | Select-Object -ExpandProperty Path
+$docsOutputFolderPath = Join-Path -Path . -ChildPath 'outputs/docs'
31
Write-Host "Docs output path: [$docsOutputFolderPath]"
32
33
$params = @{
0 commit comments