Skip to content

Commit 3209d78

Browse files
Track1 package is incorrectly set as track2 (#17075)
Azure-common is incorrectly set as new SDK due to wrong bool type casting when property is set
1 parent 4ee7f35 commit 3209d78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/scripts/Language-Settings.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function Get-python-PackageInfoFromRepo ($pkgPath, $serviceDirectory, $pkgName)
4141
{
4242
$pkgProp.SdkType = "client"
4343
}
44-
$pkgProp.IsNewSdk = $setupProps[2]
44+
$pkgProp.IsNewSdk = ($setupProps[2] -eq "True")
4545
$pkgProp.ArtifactName = $pkgName
4646
return $pkgProp
4747
}

0 commit comments

Comments
 (0)