11 lines
193 B
Bash
Executable file
11 lines
193 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
|
|
|
|
cd "$SCRIPT_DIR"
|
|
|
|
pdflatex --shell-escape report
|
|
biber report
|
|
pdflatex --shell-escape report
|