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 bb2d9b1 commit 3545e31Copy full SHA for 3545e31
scripts/main.ps1
@@ -23,7 +23,7 @@ switch ($settings) {
23
Resolve-PSModuleDependency -ManifestFilePath $manifestFilePath
24
Test-ModuleManifest -Path $manifestFilePath -Verbose
25
$PSModulePath = $env:PSModulePath -split [System.IO.Path]::PathSeparator | Select-Object -First 1
26
- $codePath = New-Item -Path "$PSModulePath/$moduleName/999.0.0" -ItemType Directory -Force
+ $codePath = New-Item -Path "$PSModulePath/$moduleName/999.0.0" -ItemType Directory -Force | Select-Object -ExpandProperty FullName
27
Copy-Item -Path "$modulePath/*" -Destination $codePath -Recurse -Force
28
Get-ChildItem -Path $codePath -Recurse | Select-Object FullName | Out-String
29
0 commit comments