diff options
Diffstat (limited to 'bpkg/utility.txx')
-rw-r--r-- | bpkg/utility.txx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bpkg/utility.txx b/bpkg/utility.txx index 47619c6..6113e4e 100644 --- a/bpkg/utility.txx +++ b/bpkg/utility.txx @@ -74,6 +74,14 @@ namespace bpkg if (no_progress) ops.push_back ("--no-progress"); + // Forward our --[no]diag-color options. + // + if (co.diag_color ()) + ops.push_back ("--diag-color"); + + if (co.no_diag_color ()) + ops.push_back ("--no-diag-color"); + return process_start_callback ( [] (const char* const args[], size_t n) { |