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-03-06 11:30:23 +0300
committerChris Rebert <github@rebertia.com>2015-03-06 11:30:23 +0300
commit8c4717edbb2b74a3050f004a5baab423f028ed27 (patch)
tree02fb88cb0302a80f2cb72193b56e02883cf17dfe
parent0f92fbf73e52e55d25f8519651665edb8ddfd2dd (diff)
add clean:docs & copy:docs to Grunt tasks; fixes #3
-rwxr-xr-xgruntworker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gruntworker.py b/gruntworker.py
index b9ddde1..919e471 100755
--- a/gruntworker.py
+++ b/gruntworker.py
@@ -83,7 +83,7 @@ def get_head_commit_sha():
def grunt_or_err():
log("Grunting...")
try:
- run_expecting_success([b'grunt', b'dist'])
+ run_expecting_success([b'grunt', b'dist', b'clean:docs', b'copy:docs'])
except CalledProcessError:
log("Error while grunting!")
raise