diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2025-02-03 13:01:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2025-02-03 13:01:55 +0200 |
commit | cd90ec1f704573bf517f76a476108069b086736d (patch) | |
tree | 8d7fab672e0cd43d36ca13613c315f351ba141c4 | |
parent | ffc45eda6de6114bb42d91483eca2a9d547544db (diff) |
-rw-r--r-- | bpkg/diagnostics.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bpkg/diagnostics.cxx b/bpkg/diagnostics.cxx index cf096d1..ec0375c 100644 --- a/bpkg/diagnostics.cxx +++ b/bpkg/diagnostics.cxx @@ -44,7 +44,10 @@ namespace bpkg const process_env& pe, const char* const args[], size_t n) { if (pe.env ()) - dr << pe << ' '; + { + to_stream (dr.os, pe, process_env_format::cwd | process_env_format::vars); + dr << ' '; + } dr << process_args {args, n}; } |