Skip to content

Commit

Permalink
Missing -m
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljoseph committed Aug 31, 2013
1 parent a1a9845 commit 15e6c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion changes/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def tag(arguments):
app_name = arguments['<app_name>']
new_version = arguments['new_version']

execute(['git', 'tag', '-a', new_version, '"%s"' % new_version], dry_run=dry_run)
execute(['git', 'tag', '-a', new_version, '-m', '"%s"' % new_version], dry_run=dry_run)
# fixme: check for call error
execute(['git push --tags'], dry_run=dry_run)

Expand Down

0 comments on commit 15e6c45

Please sign in to comment.