Skip to content

Commit

Permalink
fix(app): Fix git add
Browse files Browse the repository at this point in the history
  • Loading branch information
Tallyb committed May 13, 2019
1 parent c00a18c commit aa402e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/gitHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const getCurrentBranch = async function() {
const commitVersion = async function(version, production) {
let commitMessage = `chore(app): Version ${version} ${production ? ' production' : ''} `;
try {
await git.add('./*');
await git.add('.');
await git.commit(commitMessage);
await git.addAnnotatedTag(version, 'v' + version);
await git.push('origin', 'master');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mcfly-semantic-release",
"version": "1.1.8",
"version": "1.1.9",
"description": "A cli tool to bump version and publish to github",
"bin": {
"mcfly-semantic-release": "./bin/mcfly-semantic-release.js"
Expand Down

0 comments on commit aa402e4

Please sign in to comment.