Skip to content

Commit

Permalink
Optimize the output of portsdiff command (microsoft#1460)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimwang118 authored Jul 23, 2024
1 parent 46f5003 commit 4bfebfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vcpkg/commands.portsdiff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ namespace

std::string format_name_and_version(StringView name, const Version& version)
{
return fmt::format("\t- {:<15}{:<}\n", name, version);
return fmt::format("\t- {:<15} {:<}\n", name, version);
}

std::string format_name_and_version_diff(StringView name, const VersionDiff& version_diff)
{
return fmt::format("\t- {:<15}{:<}\n", name, version_diff);
return fmt::format("\t- {:<15} {:<}\n", name, version_diff);
}

std::vector<VersionSpec> read_ports_from_commit(const VcpkgPaths& paths, StringView git_commit_id)
Expand Down

0 comments on commit 4bfebfc

Please sign in to comment.