Skip to content

Commit 669add4

Browse files
committed
revised path
1 parent addf448 commit 669add4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/manual-publish-powershell-gallery.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
}
6666
6767
# Test that the module can be imported successfully
68-
$moduleDir = Resolve-Path (Split-Path $manifestPath)
69-
Import-Module $moduleDir -Force
68+
$fullPath = Resolve-Path $manifestPath
69+
Import-Module $fullPath -Force
7070
$loadedModule = Get-Module PSBlogger
7171
Write-Host "Successfully imported module. Exported commands:"
7272
$loadedModule.ExportedCommands.Keys | Sort-Object | ForEach-Object { Write-Host " - $_" }

0 commit comments

Comments
 (0)