Skip to content

Commit

Permalink
Merge pull request #37 from Minnek-Digital-Studio/bugfix/36
Browse files Browse the repository at this point in the history
bugfix/36
  • Loading branch information
Isaac Martinez authored Nov 12, 2022
2 parents 4ab46e4 + f276fb4 commit 59943a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Create and push a commit with the correct template for conventional commits.
```bash
cominnek update-version <version>
```
the commit will be: `build(version): update version`
the commit will be: `build: update version to <version>`

| flag | type | description |
| ------------------ | ------------- | --------------------------- |
Expand Down
4 changes: 2 additions & 2 deletions pkg/extras/update_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)

func UpdateVersion(version string) {
msg := "update version"
msg := "update version to " + version

git.PushWithOutTicket(msg, "", "build", version)
git.PushWithOutTicket(msg, "", "build", "")
}

0 comments on commit 59943a3

Please sign in to comment.