diff --git a/bin/push_new_patch.go b/bin/push_new_patch.go index d5ea2a944..692a42f78 100755 --- a/bin/push_new_patch.go +++ b/bin/push_new_patch.go @@ -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)