Skip to content

Commit

Permalink
Print a separator between sub-commands in cvd load
Browse files Browse the repository at this point in the history
  • Loading branch information
jemoreira committed Mar 25, 2024
1 parent 47f8516 commit c0321fc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions base/cvd/cuttlefish/host/commands/cvd/command_sequence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ std::string BashEscape(const std::string& input) {

std::string FormattedCommand(const cvd::CommandRequest command) {
std::stringstream effective_command;
effective_command << "*******************************************************"
"*************************\n";
effective_command << "Executing `";
for (const auto& [name, val] : command.env()) {
effective_command << BashEscape(name) << "=" << BashEscape(val) << " ";
Expand Down

0 comments on commit c0321fc

Please sign in to comment.