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 0d16f91 commit e31c904
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 @@ -18169,7 +18169,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 @@ -262,7 +262,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 e31c904

Please sign in to comment.