Browse Source

Merge pull request #147 from patacrep/useless_arguments

Remove useless arguments to LaTeX compilation
pull/152/head
Louis 9 years ago
parent
commit
2938f82e64
  1. 4
      patacrep/build.py

4
patacrep/build.py

@ -168,10 +168,6 @@ 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"]:
self._lualatex_options.append(
'--include-directory="{}"'.format(datadir)
)
def build_steps(self, steps=None):
"""Perform steps on the songbook by calling relevant self.build_*()

Loading…
Cancel
Save