summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
authoranntnzrb <51257127+anntnzrb@users.noreply.github.com>2020-07-07 10:30:26 -0500
committerGitHub <noreply@github.com>2020-07-07 11:30:26 -0400
commitae9c12a861d07b792ebe24b85bda1567cc5c37ab (patch)
tree39a99a69d984a845845adca3f608381e57934aaa /.local
parent53cdc0eb9579770b326fbf61876051cb84185c2d (diff)
downloadeibhear-ae9c12a861d07b792ebe24b85bda1567cc5c37ab.tar.gz
eibhear-ae9c12a861d07b792ebe24b85bda1567cc5c37ab.tar.zst
eibhear-ae9c12a861d07b792ebe24b85bda1567cc5c37ab.zip
Remove uneeded std suppression (#749)
There's no stdout/stderr on this condition.
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/compiler4
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/compiler b/.local/bin/compiler
index ac3b845..1892d5f 100755
--- a/.local/bin/compiler
+++ b/.local/bin/compiler
@@ -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