We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f687357 commit 3950754Copy full SHA for 3950754
1 file changed
.appveyor.yml
@@ -8,8 +8,9 @@ skip_tags: false
8
9
install:
10
- ps: |
11
- $latest = (Invoke-WebRequest "http://downloads.dlang.org/releases/LATEST").toString();
12
- $url = "http://downloads.dlang.org/releases/2.x/$($latest)/dmd.$($latest).windows.7z";
+ #$latest = (Invoke-WebRequest "http://downloads.dlang.org/releases/LATEST").toString();
+ #$url = "http://downloads.dlang.org/releases/2.x/$($latest)/dmd.$($latest).windows.7z";
13
+ $url = "http://downloads.dlang.org/releases/2.x/2.088.1/dmd.2.088.1.windows.7z"
14
(New-Object System.Net.WebClient).DownloadFile($url, "C:\dmd.7z");
15
7z x C:\dmd.7z -oC:\ > $null;
16
$env:DC="dmd"
0 commit comments