downloader tool needs to use https

This commit is contained in:
Andreas Rumpf
2017-02-07 09:09:16 +01:00
parent a62c60ef87
commit eb9efed64b
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ proc download(pkg: string; c: Controls) {.async.} =
client.onProgressChanged = onProgressChanged
# XXX give a destination filename instead
let contents = await client.getContent("http://nim-lang.org/download/" & pkg & ".zip")
let contents = await client.getContent("https://nim-lang.org/download/" & pkg & ".zip")
let z = "dist" / pkg & ".zip"
# XXX make this async somehow:
writeFile(z, contents)