Skip to content

Commit b2cf6c7

Browse files
author
Vladimir Safonkin
committed
Handle only latestFeature option
1 parent 33fad1d commit b2cf6c7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/setup-dotnet.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,15 @@ export async function run() {
4949
}
5050

5151
function getVersionFromGlobalJson(globalJsonPath: string): string {
52-
const optionValues = ['latestFeature', 'latestPatch'];
5352
let version: string = '';
5453
const globalJson = JSON.parse(
5554
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
5655
fs.readFileSync(globalJsonPath, {encoding: 'utf8'}).trim()
5756
);
5857
if (globalJson.sdk && globalJson.sdk.version) {
5958
version = globalJson.sdk.version;
60-
const rollForward = globalJson.sdk.rollForward ?? '';
61-
if (optionValues.includes(rollForward)) {
59+
const rollForward = globalJson.sdk.rollForward;
60+
if (rollForward && rollForward === 'latestFeature') {
6261
const [major, minor] = version.split('.');
6362
version = `${major}.${minor}`;
6463
}

0 commit comments

Comments
 (0)