From c500b854afd7ebd62d0cd3f0545b9715023370d8 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 6 Jun 2017 13:52:07 +0300 Subject: Adapt to libbutl::process interface change --- bpkg/fetch.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'bpkg/fetch.cxx') diff --git a/bpkg/fetch.cxx b/bpkg/fetch.cxx index a0c3b9c..e25f316 100644 --- a/bpkg/fetch.cxx +++ b/bpkg/fetch.cxx @@ -166,7 +166,9 @@ namespace bpkg // report. Process exceptions must be handled by the caller. // return fo - ? process (out.directory ().string ().c_str (), pp, args.data ()) + ? process (pp, args.data (), + 0, 1, 2, + out.directory ().string ().c_str ()) : process (pp, args.data (), 0, -1); } @@ -382,7 +384,9 @@ namespace bpkg // report. Process exceptions must be handled by the caller. // return fo - ? process (out.directory ().string ().c_str (), pp, args.data ()) + ? process (pp, args.data (), + 0, 1, 2, + out.directory ().string ().c_str ()) : process (pp, args.data (), 0, -1); } -- cgit v1.1