Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
afujiwara-roblox committed Nov 2, 2023
1 parent 75f1636 commit 1cd08d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/foreman.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function getReleases(octokit: GitHub): Promise<GitHubRelease[]> {
repo: "foreman"
});

let releases = response.data as GitHubRelease[];
const releases = response.data as GitHubRelease[];
releases.sort((a, b) => -semver.compare(a.tag_name, b.tag_name));

return releases;
Expand Down

0 comments on commit 1cd08d3

Please sign in to comment.