Skip to content

Commit

Permalink
Remove extra spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Taylor committed Jan 2, 2025
1 parent 9798ae1 commit fb81433
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,6 @@ class DotnetCoreInstaller {
getReleasesJsonUrl(httpClient, versionParts) {
return __awaiter(this, void 0, void 0, function* () {
const response = yield httpClient.getJson(DotNetCoreIndexUrl);

const result = response.result || {};
let releasesInfo = result['releases-index'];
releasesInfo = releasesInfo.filter((info) => {
Expand Down
1 change: 0 additions & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ export class DotnetCoreInstaller {
versionParts: string[]
): Promise<string> {
const response = await httpClient.getJson<any>(DotNetCoreIndexUrl);

const result = response.result || {};
let releasesInfo: any[] = result['releases-index'];

Expand Down

0 comments on commit fb81433

Please sign in to comment.