Skip to content

Commit

Permalink
Track1 package is incorrectly set as track2 (#17075)
Browse files Browse the repository at this point in the history
Azure-common is incorrectly set as new SDK due to wrong bool type casting when property is set
  • Loading branch information
praveenkuttappan authored Mar 4, 2021
1 parent 4ee7f35 commit 3209d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/scripts/Language-Settings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function Get-python-PackageInfoFromRepo ($pkgPath, $serviceDirectory, $pkgName)
{
$pkgProp.SdkType = "client"
}
$pkgProp.IsNewSdk = $setupProps[2]
$pkgProp.IsNewSdk = ($setupProps[2] -eq "True")
$pkgProp.ArtifactName = $pkgName
return $pkgProp
}
Expand Down

0 comments on commit 3209d78

Please sign in to comment.