We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cffe6c9 commit 4137d91Copy full SHA for 4137d91
1 file changed
tools/appveyor.psm1
@@ -56,7 +56,7 @@ function Invoke-AppveyorTest {
56
Copy-Item "${CheckoutPath}\out\PSScriptAnalyzer" "$modulePath\" -Recurse -Force
57
Copy-Item "${CheckoutPath}\PSCompatibilityCollector\out\PSCompatibilityCollector" "$modulePath\" -Recurse -Force
58
59
- Write-Verbose -Verbose (Get-Module -ListAvailable PSCompatibilityCollector | ForEach-Object { $_.ExportedCmdlets.Keys })
+ Write-Verbose -Verbose (Get-Module -ListAvailable PSCompatibilityCollector | ForEach-Object { $_.ExportedCmdlets.Keys | ForEach-Object { $_.ToString() } } | Out-String)
60
61
# Set up testing assets
62
$testResultsPath = Join-Path ${CheckoutPath} TestResults.xml
0 commit comments