abuild-fetch: enable curl certificate verification

This commit is contained in:
tcely 2019-04-18 23:45:00 -04:00 committed by Natanael Copa
parent d733d5e570
commit 77746a0c3d
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ int fetch(char *url, const char *destdir)
.l_len = 0,
};
struct cmdarray curlcmd = {
.argc = 6,
.argv = { "curl", "-k", "-L", "-f", "-o", partfile, NULL }
.argc = 5,
.argv = { "curl", "-L", "-f", "-o", partfile, NULL }
};
struct cmdarray wgetcmd = {
.argc = 3,