Skip to content

Commit

Permalink
Merge pull request #1855 from brauner/2017-10-12/append_devel_to_version
Browse files Browse the repository at this point in the history
arguments: print "-devel" when LXC_DEVEL is true
  • Loading branch information
stgraber committed Oct 12, 2017
2 parents 70e1f27 + 632297b commit d289046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxc/arguments.c
Expand Up @@ -131,7 +131,7 @@ static void print_usage(const struct option longopts[],

static void print_version()
{
printf("%s\n", LXC_VERSION);
printf("%s%s\n", LXC_VERSION, LXC_DEVEL ? "-devel" : "");
exit(0);
}

Expand Down

0 comments on commit d289046

Please sign in to comment.