diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-01 00:01:20 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-01 00:01:20 +0200 |
commit | 9c39292647448a4ecbefd978473aa2beb9312576 (patch) | |
tree | 599a9a731626b77aa9757c7436a2cc3ce4d288c7 /templates/latex/build.sh | |
parent | refactor(common): Add common code to a shared directory (diff) | |
download | flake-templates-9c39292647448a4ecbefd978473aa2beb9312576.tar.gz flake-templates-9c39292647448a4ecbefd978473aa2beb9312576.zip |
style(treewide): Reformat
Diffstat (limited to 'templates/latex/build.sh')
-rwxr-xr-x | templates/latex/build.sh | 3 |
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 |