Apply suggestions from code review

This commit is contained in:
Chris Philips 2024-03-22 11:39:06 -07:00 committed by GitHub
parent 9e79640565
commit 43ef2eefe7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,11 +120,11 @@ function getVersionFromGlobalJson(globalJsonPath: string): string {
break;
case 'latestMinor':
version = `${major}`;
version = `${major}.x`;
break;
case 'latestFeature':
version = `${major}.${minor}`;
version = `${major}.${minor}.x`;
break;
case 'latestPatch':