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 b7ce99a commit bb2d9b1Copy full SHA for bb2d9b1
scripts/main.ps1
@@ -24,7 +24,7 @@ switch ($settings) {
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
27
- Copy-Item -Path $modulePath -Destination $codePath -Recurse -Force
+ Copy-Item -Path "$modulePath/*" -Destination $codePath -Recurse -Force
28
Get-ChildItem -Path $codePath -Recurse | Select-Object FullName | Out-String
29
30
Get-Module -ListAvailable | Format-Table -AutoSize | Out-String
0 commit comments