dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

commit e2e026aac6a984d6fe1ca03e05ab268a786c5f13
parent 7e2bda8ef8a73326750da8d4967d507ef0496050
Author: tongong <tongong@gmx.net>
Date:   Wed, 25 May 2022 11:00:28 +0200

updated tex compiler

Diffstat:
Mscripts/compiler | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/compiler b/scripts/compiler @@ -21,5 +21,6 @@ case "$ext" in h) sudo make install ;; md) pandoc -s -o "$base".pdf "$file" ;; remark) "$dir"/remark/compile.sh "$file" ;; - tex) pdflatex "$file" ;; + tex) pdflatex --shell-escape "$file" ;; + bib) biber "$base" ;; esac