Skip to content

Commit f9a8387

Browse files
committed
upgrade to DCD 0.15.2
1 parent cab8cf1 commit f9a8387

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/installer.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -356,19 +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.15.0/dcd-v0.15.0-linux-x86_64.tar.gz", title: "DCD" });
359+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.2/dcd-v0.15.2-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.15.0/dcd-v0.15.0-osx-x86_64.tar.gz", title: "DCD" });
362+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.2/dcd-v0.15.2-osx-x86_64.tar.gz", title: "DCD" });
363363
}
364364
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" });
365+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.2/dcd-v0.15.2-osx-arm64.tar.gz", title: "DCD" });
366366
}
367367
else if (process.platform == "win32") {
368368
if (process.arch == "x64")
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" });
369+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.2/dcd-v0.15.2-windows-x86_64.zip", title: "DCD" });
370370
else
371-
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.0/dcd-v0.15.0-windows-x86.zip", title: "DCD" });
371+
urls.push({ url: "https://github.com/dlang-community/DCD/releases/download/v0.15.2/dcd-v0.15.2-windows-x86.zip", title: "DCD" });
372372
}
373373

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

0 commit comments

Comments
 (0)