Fix duplicate entries int he ToC for the EPUB and AZW3 versions of the User Manual

This commit is contained in:
Kovid Goyal 2014-07-11 16:23:13 +05:30
parent 14431cee13
commit 3ba4f7d607

View File

@ -83,9 +83,9 @@ class Manual(Command):
os.environ['__version__'] = __version__
subprocess.check_call(['sphinx-build2', '-b', 'html', '-t', 'online',
'-d', '.build/doctrees', '.', '.build/html'])
with self:
subprocess.check_call(['sphinx-build', '-b', 'myepub', '-d',
'.build/doctrees', '.', '.build/epub'])
with self:
subprocess.check_call(['sphinx-build', '-b', 'mylatex', '-d',
'.build/doctrees', '.', '.build/latex'])
pwd = os.getcwdu()