1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

remove double quote escapes in commit message for auto version bumper

This commit is contained in:
Jesse Duffield 2018-08-09 19:02:16 +10:00
parent a56643fe64
commit cc31cb1abe

View File

@ -37,7 +37,7 @@ func main() {
}
runCommand("git", "add", "VERSION")
runCommand("git", "commit", "-m", "\"bump version to "+newVersion+"\"", "--", "VERSION")
runCommand("git", "commit", "-m", "bump version to "+newVersion, "--", "VERSION")
runCommand("git", "push")
runCommand("git", "tag", newVersion)
runCommand("git", "push", "origin", newVersion)