Skip to content

Commit f21acb2

Browse files
committed
update DCD download URL
1 parent 8b87c0c commit f21acb2

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/installer.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,16 +356,19 @@ export function installServeD(urls: { url: string, title: string }[], ref: strin
356356

357357
// add DCD binaries here as well
358358
if (process.platform == "linux" && process.arch == "x64") {
359-
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.13.6/dcd-v0.13.6-linux-x86_64.tar.gz", title: "DCD" });
359+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.0/dcd-v0.15.0-linux-x86_64.tar.gz", title: "DCD" });
360360
}
361361
else if (process.platform == "darwin" && process.arch == "x64") {
362-
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.13.6/dcd-v0.13.6-osx-x86_64.tar.gz", title: "DCD" });
362+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.0/dcd-v0.15.0-osx-x86_64.tar.gz", title: "DCD" });
363+
}
364+
else if (process.platform == "darwin" && process.arch == "arm64") {
365+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.0/dcd-v0.15.0-osx-arm64.tar.gz", title: "DCD" });
363366
}
364367
else if (process.platform == "win32") {
365368
if (process.arch == "x64")
366-
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.13.6/dcd-v0.13.6-windows-x86_64.zip", title: "DCD" });
369+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.0/dcd-v0.15.0-windows-x86_64.zip", title: "DCD" });
367370
else
368-
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.13.6/dcd-v0.13.6-windows-x86.zip", title: "DCD" });
371+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.0/dcd-v0.15.0-windows-x86.zip", title: "DCD" });
369372
}
370373

371374
return (env: any) => new Promise((done) => {

0 commit comments

Comments
 (0)