diff options
-rw-r--r-- | bpkg/pkg-build.cxx | 4 | ||||
-rw-r--r-- | bpkg/pkg-drop.cxx | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/bpkg/pkg-build.cxx b/bpkg/pkg-build.cxx index d9847f2..a6d51c9 100644 --- a/bpkg/pkg-build.cxx +++ b/bpkg/pkg-build.cxx @@ -1521,7 +1521,9 @@ namespace bpkg if (o.print_only ()) cout << act << endl; else if (verb) - text << act; + // Print indented for better visual separation. + // + text << " " << act; } } diff --git a/bpkg/pkg-drop.cxx b/bpkg/pkg-drop.cxx index fa9f0bd..d623b68 100644 --- a/bpkg/pkg-drop.cxx +++ b/bpkg/pkg-drop.cxx @@ -317,7 +317,9 @@ namespace bpkg if (print_only) cout << "drop " << p->name << endl; else if (verb) - text << "drop " << p->name; + // Print indented for better visual separation. + // + text << " drop " << p->name; } if (print_only) |