diff options
Diffstat (limited to 'tools/downloader.nim')
-rw-r--r-- | tools/downloader.nim | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/downloader.nim b/tools/downloader.nim index 48331e97a..3d866f5d7 100644 --- a/tools/downloader.nim +++ b/tools/downloader.nim @@ -36,10 +36,7 @@ proc download(pkg: string; c: Controls) {.async.} = c.bar.value = clamp(int(progress*100 div total), 0, 100) client.onProgressChanged = onProgressChanged - # XXX give a destination filename instead - let contents = await client.getContent("https://nim-lang.org/download/" & pkg & ".7z") - # XXX make this async somehow: - writeFile(z, contents) + await client.downloadFile("https://nim-lang.org/download/" & pkg & ".7z", z) c.bar.value = 100 let p = osproc.startProcess("7zG.exe", getCurrentDir() / r"..\dist", ["x", pkg & ".7z"]) |