summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2019-07-06 13:56:07 -0600
committerkotfu <kotfu@kotfu.net>2019-07-06 13:56:07 -0600
commite5288ee47c0a2bab32b295ce46c5d465e89c0ee2 (patch)
tree211a62d4701c8065161301055cb99bba7d6b8a9d /tasks.py
parent9fe8e36a1e26569bdb47b8c361d077675a876af9 (diff)
downloadcmd2-git-e5288ee47c0a2bab32b295ce46c5d465e89c0ee2.tar.gz
Fix incorrect path in doc8 task
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 1521870e..c2ae9b17 100644
--- a/tasks.py
+++ b/tasks.py
@@ -104,7 +104,7 @@ namespace.add_task(docs)
@invoke.task()
def doc8(context):
"Check documentation with doc8"
- context.run('doc8 docs --ignore-path _build')
+ context.run('doc8 docs --ignore-path docs/_build')
namespace.add_task(doc8)
@invoke.task