summaryrefslogtreecommitdiff
path: root/jarmonbuild/commands.py
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-12-11 15:19:54 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-12-11 15:19:54 -0500
commit97229e0c843381edda0e37c7bc04841db5ef17b2 (patch)
treecbcd3d69610d5d0c9953cc9a59f5c55d87417e07 /jarmonbuild/commands.py
parentb49aa63ca075baa78ac673133bebcb7494eab225 (diff)
include the README in the API docs
Diffstat (limited to 'jarmonbuild/commands.py')
-rw-r--r--jarmonbuild/commands.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/jarmonbuild/commands.py b/jarmonbuild/commands.py
index 5623bbb..edb29ae 100644
--- a/jarmonbuild/commands.py
+++ b/jarmonbuild/commands.py
@@ -80,9 +80,10 @@ class BuildApidocsCommand(BuildCommand):
check_call((
'jsdoc',
'-c', os.path.join(workingbranch_dir, 'jarmonbuild', 'jsdoc.json'),
+ '-r', os.path.join(workingbranch_dir, 'README'),
'-d', apidocs_dir,
os.path.join(workingbranch_dir, 'jarmon'),
- ), stdout=PIPE, stderr=PIPE,)
+ ),)
class BuildReleaseCommand(BuildCommand):