diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-06-06 13:52:07 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-06-06 13:52:07 +0300 |
commit | c500b854afd7ebd62d0cd3f0545b9715023370d8 (patch) | |
tree | 54feeb56557c05e0f6330c6b38458fa4ced0a869 | |
parent | be8ddf26165f25d323657c1e6553af9b42b6d6bf (diff) |
Adapt to libbutl::process interface change
-rw-r--r-- | bpkg/fetch.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
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); } |