diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-09-05 14:09:51 +0800 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-09-05 14:09:51 +0800 |
commit | 9004bba9bbee3395ff074ea437bec33d673f2bdd (patch) | |
tree | e9e0c1b5961c67e9a80a279705ae10ee66a31a1a | |
parent | 17a9da77ced76708a679efc0677118eae3ace7ad (diff) | |
download | my_new_personal_website-9004bba9bbee3395ff074ea437bec33d673f2bdd.tar.xz my_new_personal_website-9004bba9bbee3395ff074ea437bec33d673f2bdd.zip |
pyblog: add --no-verify to git-commit for builds
No point in checking for trailing whitespace etc. in builds.
Diffstat (limited to '')
-rwxr-xr-x | pyblog | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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", |