Enable API change detection for track2 management package (#3372)

Co-authored-by: praveenkuttappan <prmarott@microsoft.com>
This commit is contained in:
Azure SDK Bot 2022-02-25 07:23:04 -08:00 committed by GitHub
parent ddc9eb355f
commit 4a72b62e39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()