Skip to content

Commit

Permalink
fix: tag message; readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
stbaer committed Jan 7, 2017
1 parent 3f90e36 commit d57a2d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ from the root of a git flow enabled repo
- bump the version number(s) of all files set in the config (see Config section below)
- update the history file if it is specified in the config
- execute the build script if it is specified in the config
- commit the changes
- commit the changes (use the -m cli flag for a custom commit message, otherwise it's `Release ${releaseVersion}`)
- run `git flow release finish ${newReleaseVersion}`
- ask if all branches and tags should be pushed and do it if yes
- ask if all branches and tags should be pushed and do it if yes (TODO - add cli flag to skip the question)
- (TODO - ask for npm publish)

## Requirements
Expand Down
2 changes: 1 addition & 1 deletion bin/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const onVersionsBumped = () => {
}
shellEx(`${commitCommand}"`);

execSh(`git flow release finish "${tagMessage}" ${newVersion}`)
execSh(`git flow release finish ${tagMessage} ${newVersion}`)
.then(onGitFlowReleaseFinished)
.catch(handleError);
};
Expand Down

0 comments on commit d57a2d9

Please sign in to comment.