From 33fad1d14250a684b5719b4271e9b4fc86f891a9 Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Fri, 20 Aug 2021 17:28:30 +0300 Subject: [PATCH] Format code --- src/setup-dotnet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup-dotnet.ts b/src/setup-dotnet.ts index eea9916..ae4fe7a 100644 --- a/src/setup-dotnet.ts +++ b/src/setup-dotnet.ts @@ -49,7 +49,7 @@ export async function run() { } function getVersionFromGlobalJson(globalJsonPath: string): string { - const optionValues = ['latestFeature', 'latestPatch'] + const optionValues = ['latestFeature', 'latestPatch']; let version: string = ''; const globalJson = JSON.parse( // .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649