digitalmars.D.learn - What's the best way to programmatically detect the most recent release
- Andrew Edwards (11/11) Oct 16 2017 The best way I know to determine the latest DMD release is
- Jacob Carlborg (10/20) Oct 16 2017 The official download script [1] is using the following:
- Andrew Edwards (2/5) Oct 16 2017 You're a godsend. Thank you very much.
- Jacob Carlborg (4/5) Oct 17 2017 :D
The best way I know to determine the latest DMD release is
http://ftp.digitalmars.com/LATEST. I'm not aware that such a file
exists for LDC and GDC so I'm currently doing:
string latest(string url) {
return executeShell("git ls-remote --tags " ~ url ~ " | cut
-d 'v' -f 2 | cut -d '-' -f 1 | cut -d '^' -f 1 | uniq | tail -n
1").output.strip;
}
Is there a better way?
Thanks,
Andrew
Oct 16 2017
On 2017-10-16 17:13, Andrew Edwards wrote:
The best way I know to determine the latest DMD release is
http://ftp.digitalmars.com/LATEST. I'm not aware that such a file exists
for LDC and GDC so I'm currently doing:
string latest(string url) {
return executeShell("git ls-remote --tags " ~ url ~ " | cut -d 'v'
-f 2 | cut -d '-' -f 1 | cut -d '^' -f 1 | uniq | tail -n 1").output.strip;
}
Is there a better way?
The official download script [1] is using the following:
dmd - http://downloads.dlang.org/releases/LATEST
dmd beta - http://downloads.dlang.org/pre-releases/LATEST
ldc - https://ldc-developers.github.io/LATEST
ldc beta - https://ldc-developers.github.io/LATEST_BETA
gdc - http://gdcproject.org/downloads/LATEST
[1] https://dlang.org/install.sh
--
/Jacob Carlborg
Oct 16 2017
On Monday, 16 October 2017 at 18:21:46 UTC, Jacob Carlborg wrote:On 2017-10-16 17:13, Andrew Edwards wrote:You're a godsend. Thank you very much.Is there a better way?The official download script [1] is using the following:
Oct 16 2017
On 2017-10-16 20:32, Andrew Edwards wrote:You're a godsend. Thank you very much.:D -- /Jacob Carlborg
Oct 17 2017








Jacob Carlborg <doob me.com>