Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize the output of portsdiff command #1460

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading