Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ export async function getDenoDownloadUrl(
} version information from ${url}.`,
);
}
const version = (await res.text()).trim();
let version = (await res.text()).trim();
// TODO(bartlomieju): temporary workaround for https://github.com/jsr-io/jsr-npm/issues/129
// until it's fixed upstream in Deno
if (!canary) {
version = "v2.3.7";
}

return {
canary,
Expand Down