Merge "More robust book building for api-site"

This commit is contained in:
Jenkins 2014-01-01 10:18:16 +00:00 committed by Gerrit Code Review
commit a1de3ef934
1 changed files with 5 additions and 0 deletions

View File

@ -765,6 +765,11 @@ def build_affected_books(rootdir, book_exceptions,
This will throw an exception if a book fails to build
"""
# Dependency generation in api projects does not work currently,
# thus build all books
if is_api_site:
force = True
books = find_affected_books(rootdir, book_exceptions,
verbose, force)