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 1fcc825 commit 596c562Copy full SHA for 596c562
src/download.ts
@@ -52,7 +52,12 @@ export async function getDenoDownloadUrl(
52
} version information from ${url}.`,
53
);
54
}
55
- const version = (await res.text()).trim();
+ let version = (await res.text()).trim();
56
+ // TODO(bartlomieju): temporary workaround for https://github.com/jsr-io/jsr-npm/issues/129
57
+ // until it's fixed upstream in Deno
58
+ if (!canary) {
59
+ version = "v2.3.7";
60
+ }
61
62
return {
63
canary,
0 commit comments