From afe1702286a13178f2c7ac2e962d80c76c6ff5fa Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sat, 3 Nov 2018 20:59:02 -0400 Subject: [PATCH] compiler fix --- .scripts/compiler | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.scripts/compiler b/.scripts/compiler index 1d74152..53d6768 100755 --- a/.scripts/compiler +++ b/.scripts/compiler @@ -36,12 +36,9 @@ shebangtest() { esac } -# If there is a global $REFBIB variable/file for `refer`, use it. -[ -f "$REFBIB" ] && groffbib="-p $REFBIB" - case "$file" in - *\.ms) refer -PS -e $groffbib "$file" | groff -kejpt -ms -T pdf > "$base".pdf ;; - *\.rmd) echo "require(rmarkdown); render('$file')" | R --vanilla && mv "$base".pdf "$dir"/pdfs;; + *\.ms) refer -PS -e "$file" | groff -me -ms -kejpt -T pdf > "$base".pdf ;; + *\.rmd) echo "require(rmarkdown); render('$file')" | R --vanilla ;; *\.tex) textype "$file" ;; *\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;; *config.h) make && sudo make install ;;