From cc31cb1abe70f95a696879d13540b08a3a8570a7 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Thu, 9 Aug 2018 19:02:16 +1000 Subject: [PATCH] remove double quote escapes in commit message for auto version bumper --- bin/push_new_patch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)