aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/tools
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-03-08 13:07:48 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-03-09 15:12:51 +0100
commit0416ed84caf37bc482214b4213be88d405c9b4ce (patch)
tree33acfa73c01fc80bc63ccef29e79855e34136a16 /doc/tools
parent4aaf28cc905bebf757b02ad911a6eed78714cac7 (diff)
Moving Gitlab CI documentation build to the main Coq build.
Diffstat (limited to 'doc/tools')
-rw-r--r--doc/tools/coqrst/repl/coqtop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/coqrst/repl/coqtop.py b/doc/tools/coqrst/repl/coqtop.py
index 42a2f9823..2df97d3dc 100644
--- a/doc/tools/coqrst/repl/coqtop.py
+++ b/doc/tools/coqrst/repl/coqtop.py
@@ -42,7 +42,7 @@ class CoqTop:
:param args: Additional arugments to coqtop.
"""
self.coqtop_bin = coqtop_bin or os.path.join(os.getenv('COQBIN'),"coqtop")
- self.args = (args or []) + ["-color", "on"] * color
+ self.args = (args or []) + ["-boot", "-color", "on"] * color
self.coqtop = None
def __enter__(self):