Skip to content

Commit

Permalink
DOC: added version number to help string
Browse files Browse the repository at this point in the history
  • Loading branch information
cpockrandt committed Mar 10, 2021
1 parent 229e110 commit d266945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arg_parse.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ class ArgParse {

void print_help() const
{
printf(OUT_BOLD "PhyloCSF++ (build date: %s, git commit: %s)\n\n" OUT_RESET, git_date.c_str(), git_hash.c_str());
printf(OUT_BOLD "PhyloCSF++ %s (build date: %s, git commit: %s)\n\n" OUT_RESET, version.c_str(), git_date.c_str(), git_hash.c_str());
printf("%s\n\n", desc_.c_str());

printf("Usage: %s [OPTIONS]", program_name.c_str());
Expand Down

0 comments on commit d266945

Please sign in to comment.