We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent addf448 commit 669add4Copy full SHA for 669add4
1 file changed
.github/workflows/manual-publish-powershell-gallery.yml
@@ -65,8 +65,8 @@ jobs:
65
}
66
67
# Test that the module can be imported successfully
68
- $moduleDir = Resolve-Path (Split-Path $manifestPath)
69
- Import-Module $moduleDir -Force
+ $fullPath = Resolve-Path $manifestPath
+ Import-Module $fullPath -Force
70
$loadedModule = Get-Module PSBlogger
71
Write-Host "Successfully imported module. Exported commands:"
72
$loadedModule.ExportedCommands.Keys | Sort-Object | ForEach-Object { Write-Host " - $_" }
0 commit comments