Skip to content

Commit

Permalink
fix bug in tool/autotag
Browse files Browse the repository at this point in the history
  • Loading branch information
Songmu committed Dec 19, 2014
1 parent b335df0 commit a1ebf95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/autotag
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ sub main {
if ($tags{$tag}) {
say "tag: $tag already tagged"; return;
}
system(qw/git tag/, $tag, '-a', $title, '-m', $body);
system(qw/git tag -a/, $tag, '-m', "$title\n\n$body");
system(qw/git push --tags/);
}

Expand Down

0 comments on commit a1ebf95

Please sign in to comment.