Skip to content

Commit

Permalink
Galaxy: Show generation in --galaxy-show-builds output
Browse files Browse the repository at this point in the history
  • Loading branch information
Sude- committed Feb 12, 2018
1 parent e9ac6d0 commit 40cbb5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/downloader.cpp
Expand Up @@ -3804,7 +3804,7 @@ void Downloader::galaxyShowBuilds(const std::string& product_id, int build_index
{
for (unsigned int i = 0; i < json["items"].size(); ++i)
{
std::cout << i << ": " << "Version " << json["items"][i]["version_name"].asString() << " - " << json["items"][i]["date_published"].asString() << std::endl;
std::cout << i << ": " << "Version " << json["items"][i]["version_name"].asString() << " - " << json["items"][i]["date_published"].asString() << " (Gen " << json["items"][i]["generation"].asInt() << ")" << std::endl;
}
return;
}
Expand Down

0 comments on commit 40cbb5f

Please sign in to comment.