aboutsummaryrefslogtreecommitdiff
path: root/bpkg/fetch.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-06-06 13:52:07 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-06-06 13:52:07 +0300
commitc500b854afd7ebd62d0cd3f0545b9715023370d8 (patch)
tree54feeb56557c05e0f6330c6b38458fa4ced0a869 /bpkg/fetch.cxx
parentbe8ddf26165f25d323657c1e6553af9b42b6d6bf (diff)
Adapt to libbutl::process interface change
Diffstat (limited to 'bpkg/fetch.cxx')
-rw-r--r--bpkg/fetch.cxx8
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);
}