From d206636de2c54596ec588a2f4ef69713acedeecc Mon Sep 17 00:00:00 2001 From: Louis Date: Fri, 30 Oct 2015 15:36:15 +0100 Subject: [PATCH] DEBUG: Test disabling miktex auto installer --- patacrep/build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patacrep/build.py b/patacrep/build.py index d260d45b..b892d759 100644 --- a/patacrep/build.py +++ b/patacrep/build.py @@ -168,10 +168,11 @@ class SongbookBuilder(object): self._lualatex_options.append("--shell-escape") if not self.interactive: self._lualatex_options.append("-halt-on-error") - for datadir in self.songbook.config["datadir"]: + for datadir in self.songbook.config["datadir"]: # TODO Is this really necessary? self._lualatex_options.append( '--include-directory="{}"'.format(datadir) ) + self._lualatex_options.append("--disable-installer") # TODO Windows only http://docs.miktex.org/manual/texfeatures.html#autoinstalloptions def build_steps(self, steps=None): """Perform steps on the songbook by calling relevant self.build_*()