From 9004bba9bbee3395ff074ea437bec33d673f2bdd Mon Sep 17 00:00:00 2001
From: Zhiming Wang <zmwangx@gmail.com>
Date: Sat, 5 Sep 2015 14:09:51 +0800
Subject: pyblog: add --no-verify to git-commit for builds

No point in checking for trailing whitespace etc. in builds.
---
 pyblog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'pyblog')

diff --git a/pyblog b/pyblog
index e717caf0..4217be75 100755
--- a/pyblog
+++ b/pyblog
@@ -982,7 +982,7 @@ def deploy(args):
     # commit changes in BUILDDIR
     sys.stderr.write("%scommand: git add --all%s\n" % (BLUE, RESET))
     subprocess.check_call(["git", "add", "--all"])
-    sys.stderr.write("%scommand: git commit --gpg-sign --message='%s'%s\n" %
+    sys.stderr.write("%scommand: git commit --no-verify --gpg-sign --message='%s'%s\n" %
                      (BLUE, commit_message, RESET))
     try:
         subprocess.check_call(["git", "commit", "--gpg-sign",
-- 
cgit v1.2.1