Skip to content

Commit

Permalink
fix: Change x86_64 to x64
Browse files Browse the repository at this point in the history
  • Loading branch information
richiemcilroy committed Mar 24, 2024
1 parent ed79da5 commit b692fb4
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export async function GET(
}
) {
try {
if (params.arch === "x86_64") {
params.arch = "x64";
}

const { data: release } = await octokit.repos.getLatestRelease({
owner: "capsoftware",
repo: "cap",
Expand Down

1 comment on commit b692fb4

@vercel
Copy link

@vercel vercel bot commented on b692fb4 Mar 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.