mirror of https://github.com/eyhc1/rendercv.git
fix stdout argument of subprocess.run
This commit is contained in:
parent
21c95ad0ea
commit
70e8bac661
|
@ -407,7 +407,7 @@ def run_latex(latex_file_path):
|
||||||
],
|
],
|
||||||
cwd=os.path.dirname(latex_file_path),
|
cwd=os.path.dirname(latex_file_path),
|
||||||
check=True,
|
check=True,
|
||||||
stdout=subprocess.STDOUT, # suppress latexmk output
|
stdout=subprocess.PIPE, # suppress latexmk output
|
||||||
stderr=subprocess.STDOUT, # suppress latexmk output
|
stderr=subprocess.STDOUT, # suppress latexmk output
|
||||||
)
|
)
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
|
|
Loading…
Reference in New Issue