Skip to content

Commit b208495

Browse files
committed
Independently check presence of latexmk and texify
MikTeX also ships latexmk, but without bundled perl interpreter. texify state could be ignored if distro is set to anything else, but as it doesn't hurt being marked "missing" for TeX Live setups, just always query both.
1 parent f322700 commit b208495

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

latextools/system_check.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,9 @@ def worker(self):
296296
# a list of programs, each program is either a string or a list
297297
# of alternatives (e.g. 32/64 bit version)
298298
programs = [
299-
"latexmk" if not self.uses_miktex else "texify",
299+
"perl",
300+
"latexmk",
301+
"texify",
300302
"pdflatex",
301303
"xelatex",
302304
"lualatex",

0 commit comments

Comments
 (0)