Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/gruntworker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@rebertia.com>2015-04-13 22:13:56 +0300
committerChris Rebert <github@rebertia.com>2015-04-13 22:13:56 +0300
commit3906c0e19b05f177a7b39c1a8b972f4e5eb55c14 (patch)
tree50352c4fdb8647ce02bb17744eb6174545695f7c
parent289ccd4ce39512ae9487cf0e1a1c88de97e808df (diff)
Fix #5
-rwxr-xr-xgruntworker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gruntworker.py b/gruntworker.py
index 99b2222..9c5dd8f 100755
--- a/gruntworker.py
+++ b/gruntworker.py
@@ -138,7 +138,7 @@ def main():
log("No files modified by grunt; Done.")
return
run_expecting_success([b'git', b'add', b'--'] + modified_files)
- run_expecting_success([b'git', b'commit', b'-m', b"automatic `grunt dist`"])
+ run_expecting_success([b'git', b'commit', b'-m', b"automatic `grunt dist`\n\n[ci skip]"])
push_or_err()
except Exception: # pylint: disable=W0703
log("Resetting master branch & checkout back to commit {} ...".format(post_fetch_commit_sha))