diff --git a/eng/common/scripts/Detect-Api-Changes.ps1 b/eng/common/scripts/Detect-Api-Changes.ps1 index 3c88398ce..e5c054013 100644 --- a/eng/common/scripts/Detect-Api-Changes.ps1 +++ b/eng/common/scripts/Detect-Api-Changes.ps1 @@ -60,7 +60,7 @@ function Should-Process-Package($pkgPath, $packageName) # Get package info from json file created before updating version to daily dev $pkgInfo = Get-Content $pkgPropPath | ConvertFrom-Json Write-Host "SDK Type: $($pkgInfo.SdkType)" - return ($pkgInfo.SdkType -eq "client" -and $pkgInfo.IsNewSdk) + return $pkgInfo.IsNewSdk } function Log-Input-Params()