Skip to content

Commit c6a8e51

Browse files
committed
Fix Herbie binary download location
1 parent 7e68584 commit c6a8e51

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ const FPBENCH_SERVER_ADDRESS = "https://github.com/herbie-fp/odyssey/releases/do
2323

2424
async function getLatestHerbieBinary(): Promise<string> {
2525
const repo = "herbie-fp/odyssey";
26-
const url = `https://api.github.com/repos/${repo}/releases/latest`;
26+
// const url = `https://api.github.com/repos/${repo}/releases/latest`;
27+
const url = HERBIE_SERVER_ADDRESS;
2728

2829
try {
2930
const response = await fetch(url, { headers: { "Accept": "application/vnd.github.v3+json" } });

0 commit comments

Comments
 (0)