From 1bcba2c1b09f440e4017d5aeb411e5efaf08b809 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 5 Dec 2022 12:31:45 +0200 Subject: Forward --curl* options to bpkg --- bdep/utility.txx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'bdep/utility.txx') diff --git a/bdep/utility.txx b/bdep/utility.txx index 12bc06c..100ee07 100644 --- a/bdep/utility.txx +++ b/bdep/utility.txx @@ -135,6 +135,20 @@ namespace bdep ops.push_back (o.c_str ()); } + // Forward our --curl* options. + // + if (co.curl_specified ()) + { + ops.push_back ("--curl"); + ops.push_back (co.curl ().string ().c_str ()); + } + + for (const string& o: co.curl_option ()) + { + ops.push_back ("--curl-option"); + ops.push_back (o.c_str ()); + } + return process_start_callback ( [v] (const char* const args[], size_t n) { -- cgit v1.1