Call subprocesses with absolute path
This commit is contained in:
parent
b6901ea1e5
commit
48407cacf8
3 changed files with 3 additions and 3 deletions
|
|
@ -690,7 +690,7 @@ class TestWEIRegistration(TestCase):
|
|||
"""
|
||||
with open("/dev/null", "wb") as devnull:
|
||||
return subprocess.call(
|
||||
["which", "xelatex"],
|
||||
["/usr/bin/which", "xelatex"],
|
||||
stdout=devnull,
|
||||
stderr=devnull,
|
||||
) == 0
|
||||
|
|
|
|||
|
|
@ -1103,7 +1103,7 @@ class MemberListRenderView(LoginRequiredMixin, View):
|
|||
|
||||
with open(os.devnull, "wb") as devnull:
|
||||
error = subprocess.Popen(
|
||||
["xelatex", "-interaction=nonstopmode", "{}/wei-list.tex".format(tmp_dir)],
|
||||
["/usr/bin/xelatex", "-interaction=nonstopmode", "{}/wei-list.tex".format(tmp_dir)],
|
||||
cwd=tmp_dir,
|
||||
stderr=devnull,
|
||||
stdout=devnull,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue