about summary refs log tree commit diff stats
path: root/build/latex/letter/build.sh
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-01 12:42:55 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-01 12:42:55 +0100
commit1519f60dd0d6b2352c692f1edeedc29c533b752e (patch)
tree9977d179f25d295269bb1f3e149ee94e619febf3 /build/latex/letter/build.sh
parentfix(templates/latex/presentation/flake.nix): Remove outdated follow (diff)
downloadflake-templates-1519f60dd0d6b2352c692f1edeedc29c533b752e.tar.gz
flake-templates-1519f60dd0d6b2352c692f1edeedc29c533b752e.zip
chore(build): Re-generate
Diffstat (limited to 'build/latex/letter/build.sh')
-rwxr-xr-xbuild/latex/letter/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/latex/letter/build.sh b/build/latex/letter/build.sh
index 80ecc57..3cc579a 100755
--- a/build/latex/letter/build.sh
+++ b/build/latex/letter/build.sh
@@ -23,7 +23,7 @@ for arg in "$@"; do
 done
 
 # find all directories which are not the destination dir or inside it
-find "$root" -type d -not -name "$dst" -not -path "./$dst/*" -printf '%P\n' | while IFS= read -r dir; do
+fd . "$root" --type directory --exclude "$dst" --exclude "./$dst/*" --hidden --exec realpath --relative-to=. {} | while IFS= read -r dir; do
     mkdir --parents "$dst/$dir"
 done