Remove uneeded std suppression (#749)

There's no stdout/stderr on this condition.
This commit is contained in:
anntnzrb 2020-07-07 10:30:26 -05:00 committed by GitHub
parent 53cdc0eb95
commit ae9c12a861
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,9 +32,9 @@ case "$ext" in
go) go run "$file" ;; go) go run "$file" ;;
h) sudo make install ;; h) sudo make install ;;
m) octave "$file" ;; 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 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" groffdown -i "$file" | groff > "$base.pdf"
else else
pandoc "$file" --pdf-engine=xelatex -o "$base".pdf pandoc "$file" --pdf-engine=xelatex -o "$base".pdf