We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e68584 commit c6a8e51Copy full SHA for c6a8e51
src/extension.ts
@@ -23,7 +23,8 @@ const FPBENCH_SERVER_ADDRESS = "https://github.com/herbie-fp/odyssey/releases/do
23
24
async function getLatestHerbieBinary(): Promise<string> {
25
const repo = "herbie-fp/odyssey";
26
- const url = `https://api.github.com/repos/${repo}/releases/latest`;
+ // const url = `https://api.github.com/repos/${repo}/releases/latest`;
27
+ const url = HERBIE_SERVER_ADDRESS;
28
29
try {
30
const response = await fetch(url, { headers: { "Accept": "application/vnd.github.v3+json" } });
0 commit comments