We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf5fd33 + 4ca29d7 commit 367c70fCopy full SHA for 367c70f
1 file changed
index.js
@@ -62,9 +62,10 @@ async function dafnyURLAndFullVersion(version, distribution) {
62
fullVersion = version;
63
}
64
const root = "https://github.com/dafny-lang/dafny/releases/download";
65
+ // using the same approach as the dafny-lang/ide-vscode
66
const url = `${root}/${versionPath}/dafny-${
67
version == "2.3.0" ? "2.3.0.10506" : version
- }-x64-${distribution}.zip`;
68
+ }-${os.arch()}-${distribution}.zip`;
69
return { url, fullVersion };
70
71
0 commit comments