aboutsummaryrefslogtreecommitdiffstats
path: root/templates/latex/scripts
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/scripts
parentrefactor(common): Add common code to a shared directory (diff)
downloadflake-templates-9c39292647448a4ecbefd978473aa2beb9312576.zip
style(treewide): Reformat
Diffstat (limited to 'templates/latex/scripts')
-rwxr-xr-xtemplates/latex/scripts/extract_text_from_all.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/latex/scripts/extract_text_from_all.sh b/templates/latex/scripts/extract_text_from_all.sh
index dd8818f..11b2ac4 100755
--- a/templates/latex/scripts/extract_text_from_all.sh
+++ b/templates/latex/scripts/extract_text_from_all.sh
@@ -2,6 +2,7 @@
grep 'INPUT ./' ./build/main.fls | uniq | sed 's/INPUT //' | while read -r file; do
if ! [ "$(basename "$file")" = preamble.tex ] && ! [ "$(basename "$file")" = gymnasium.png ]; then
- printf "\n%% Filename: %s\n" "$file"; grep -v '^\s*%' "$file";
- fi;
- done
+ printf "\n%% Filename: %s\n" "$file"
+ grep -v '^\s*%' "$file"
+ fi
+done