Skip to content

Commit b8a676d

Browse files
authored
fix: use dl.deno.land for downloading binaries (#67)
1 parent ba9dcf3 commit b8a676d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async function install(version) {
2121
const zip = zipName();
2222
const url = version.isCanary
2323
? `https://dl.deno.land/canary/${version.version}/${zip}`
24-
: `https://github.com/denoland/deno/releases/download/v${version.version}/${zip}`;
24+
: `https://dl.deno.land/release/v${version.version}/${zip}`;
2525

2626
core.info(`Downloading Deno from ${url}.`);
2727

0 commit comments

Comments
 (0)