Skip to content

Commit

Permalink
Use lowercase v for version tags
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens committed Jan 6, 2019
1 parent 95ae9b6 commit 1b6f669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/git.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@ int16_t bake_publish(
ut_try( cmd(command), NULL);
ut_log("#[green]OK #[normal]Committed version '%s'\n", project->version);

command = ut_asprintf("git tag -a V%s -m \"Version v%s\"",
command = ut_asprintf("git tag -a v%s -m \"Version v%s\"",
project->version, project->version);
ut_try( cmd(command), NULL);
ut_log("#[green]OK #[normal]Created tag 'V%s'\n", project->version);
ut_log("#[green]OK #[normal]Created tag 'v%s'\n", project->version);

ut_log("#[green]OK #[normal]Published %s:%s\n", project->id, project->version);

Expand Down

0 comments on commit 1b6f669

Please sign in to comment.