about summary refs log tree commit diff stats
path: root/templates
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
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 '')
-rw-r--r--templates/latex/README.md1
-rwxr-xr-xtemplates/latex/build.sh3
-rw-r--r--templates/latex/cog.toml6
-rwxr-xr-xtemplates/latex/scripts/extract_text_from_all.sh7
4 files changed, 9 insertions, 8 deletions
diff --git a/templates/latex/README.md b/templates/latex/README.md
index 466604a..172ae84 100644
--- a/templates/latex/README.md
+++ b/templates/latex/README.md
@@ -3,6 +3,7 @@
 Some text about the project.
 
 ## Licence
+
 This document is licensed under a
 Creative Commons Attribution-ShareAlike 4.0 International License.
 
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
diff --git a/templates/latex/cog.toml b/templates/latex/cog.toml
index 500ed32..ff2c110 100644
--- a/templates/latex/cog.toml
+++ b/templates/latex/cog.toml
@@ -3,10 +3,10 @@ branch_whitelist = ["main", "prime"]
 ignore_merge_commits = false
 
 pre_bump_hooks = [
-  "nix flake check",                     # verify the project builds
-  "./scripts/renew_copyright_header.sh", # update the license header in each file
+  "nix flake check",                                                    # verify the project builds
+  "./scripts/renew_copyright_header.sh",                                # update the license header in each file
   "flake_version_update --version v{{version}} --input-file flake.nix", # update the version in the flake.nix file
-  "nix fmt",                             # format
+  "nix fmt",                                                            # format
 ]
 post_bump_hooks = [
   "git push",
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