MDL-23128 tex: silence dvips output

This was causing spewwing of lots of messages to the error log..

Thanks to Fred Woolard for the suggestion
This commit is contained in:
Dan Poltawski
2015-11-25 17:07:40 +00:00
parent f0aa5b7e3b
commit e5baddebcd
+1 -1
View File
@@ -123,7 +123,7 @@
// run dvips (.dvi to .ps)
$pathdvips = escapeshellarg(trim(get_config('filter_tex', 'pathdvips'), " '\""));
$command = "$pathdvips -E $dvi -o $ps";
$command = "$pathdvips -q -E $dvi -o $ps";
if ($this->execute($command, $log )) {
return false;
}