Remove uneeded std suppression (#749)
There's no stdout/stderr on this condition.
This commit is contained in:
parent
53cdc0eb95
commit
ae9c12a861
1 changed files with 2 additions and 2 deletions
|
@ -32,9 +32,9 @@ case "$ext" in
|
|||
go) go run "$file" ;;
|
||||
h) sudo make install ;;
|
||||
m) octave "$file" ;;
|
||||
md) if [ -x "$(command -v lowdown)" ] >/dev/null; then
|
||||
md) if [ -x "$(command -v lowdown)" ]; then
|
||||
lowdown -d nointem -e super "$file" -Tms | groff -mpdfmark -ms -kept > "$base".pdf
|
||||
elif [ -x "$(command -v groffdown)" ] >/dev/null; then
|
||||
elif [ -x "$(command -v groffdown)" ]; then
|
||||
groffdown -i "$file" | groff > "$base.pdf"
|
||||
else
|
||||
pandoc "$file" --pdf-engine=xelatex -o "$base".pdf
|
||||
|
|
Loading…
Reference in a new issue