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 b86134a commit 67f1633Copy full SHA for 67f1633
eng/scripts/Language-Settings.ps1
@@ -103,7 +103,11 @@ function Get-AllPackageInfoFromRepo($serviceDirectory)
103
$searchPath = Join-Path $searchPath $serviceDirectory
104
}
105
106
- $pkgFiles = Get-ChildItem -Path $searchPath -Include "go.mod" -Recurse
+ [array]$pkgFiles = Get-ChildItem -Path $searchPath -Include "go.mod" -Recurse
107
+
108
+ if ($pkgFiles) {
109
+ Write-Host "[Get-AllPackageInfoFromRepo] Mod count: $($pkgFiles.Count)"
110
+ }
111
112
foreach ($pkgFile in $pkgFiles)
113
{
0 commit comments