mirror of
https://github.com/rendercv/rendercv.git
synced 2026-03-13 12:18:18 -04:00
fix stdout argument of subprocess.run
This commit is contained in:
@@ -407,7 +407,7 @@ def run_latex(latex_file_path):
|
||||
],
|
||||
cwd=os.path.dirname(latex_file_path),
|
||||
check=True,
|
||||
stdout=subprocess.STDOUT, # suppress latexmk output
|
||||
stdout=subprocess.PIPE, # suppress latexmk output
|
||||
stderr=subprocess.STDOUT, # suppress latexmk output
|
||||
)
|
||||
except subprocess.CalledProcessError as e:
|
||||
|
||||
Reference in New Issue
Block a user