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 eff9481 commit b983951Copy full SHA for b983951
PhpManager/private/Get-PhpExtensionDetail.ps1
@@ -53,7 +53,7 @@
53
}
54
if (Test-Path -Path $folder -PathType Container) {
55
$subFiles = Get-ChildItem -Path $folder -Filter '*.dll' | Select-Object -ExpandProperty 'FullName'
56
- $somethingToInspect = $subFiles.Count -gt 0
+ $somethingToInspect = $null -ne $subFiles -and $subFiles.Count -gt 0
57
if ($somethingToInspect) {
58
$inspectorParameters += $subFiles
59
0 commit comments