mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
downloader tool needs to use https
This commit is contained in:
2
koch.nim
2
koch.nim
@@ -223,7 +223,7 @@ proc bundleWinTools() =
|
||||
copyExe("tools/finish".exe, "finish".exe)
|
||||
removeFile("tools/finish".exe)
|
||||
nimexec("c -o:bin/vccexe.exe tools/vccenv/vccexe")
|
||||
nimexec(r"c --cc:vcc --app:gui -o:downloader.exe --noNimblePath " &
|
||||
nimexec(r"c --cc:vcc --app:gui -o:bin\downloader.exe -d:ssl --noNimblePath " &
|
||||
r"--path:..\ui tools\downloader.nim")
|
||||
|
||||
proc zip(args: string) =
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user