use larger ceremony file size

This commit is contained in:
Jaremy Creechley 2024-04-29 14:00:49 +03:00
parent ae26d6a38f
commit 5c2f602f4a
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
1 changed files with 3 additions and 1 deletions

View File

@ -98,7 +98,9 @@ proc downloadPtau*(ptauPath, ptauUrl: string) =
echo "PTAU url: ", ptauUrl
createDir(ptauPath.parentDir)
withDir(ptauPath.parentDir):
let res = execShellCmd(fmt"curl {ptauDefUrl} -o {ptauPath}")
let cmd = fmt"curl --output '{ptauPath}' '{ptauUrl}'"
echo "curl cmd: ", cmd
let res = execShellCmd(cmd)
assert res == 0
else:
echo "Found PTAU file at: ", ptauPath