about summary refs log tree commit diff stats
path: root/templates/latex/build.sh
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-01 00:01:20 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-01 00:01:20 +0200
commit9c39292647448a4ecbefd978473aa2beb9312576 (patch)
tree599a9a731626b77aa9757c7436a2cc3ce4d288c7 /templates/latex/build.sh
parentrefactor(common): Add common code to a shared directory (diff)
downloadflake-templates-9c39292647448a4ecbefd978473aa2beb9312576.tar.gz
flake-templates-9c39292647448a4ecbefd978473aa2beb9312576.zip
style(treewide): Reformat
Diffstat (limited to 'templates/latex/build.sh')
-rwxr-xr-xtemplates/latex/build.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/templates/latex/build.sh b/templates/latex/build.sh
index 1932138..55dae94 100755
--- a/templates/latex/build.sh
+++ b/templates/latex/build.sh
@@ -8,8 +8,7 @@ else
 fi
 
 # find all directories which are not the destination dir or inside it
-find . -type d -not -name "$dst" -not -path "./$dst/*" -printf '%P\n' | while IFS= read -r dir
-do
+find . -type d -not -name "$dst" -not -path "./$dst/*" -printf '%P\n' | while IFS= read -r dir; do
     mkdir --parents "$dst/$dir"
 done
 latexmk -outdir="$dst" -file-line-error -pdflatex -recorder ./main.tex