From a1e32954c7846a60361961e233d603d8ec753ca0 Mon Sep 17 00:00:00 2001 From: drbourbon Date: Wed, 28 Jan 2026 07:47:18 +0100 Subject: [PATCH] added skipping of hyphenation generated file from clang-format-fix --- bin/clang-format-fix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/clang-format-fix b/bin/clang-format-fix index 4339ea36..206cb217 100755 --- a/bin/clang-format-fix +++ b/bin/clang-format-fix @@ -13,7 +13,9 @@ fi # --modified: files tracked by git that have been modified (staged or unstaged) # --exclude-standard: ignores files in .gitignore # Additionally exclude files in 'lib/EpdFont/builtinFonts/' as they are script-generated. +# Also exclude files in 'lib/Epub/Epub/hyphenation/generated/' as they are script-generated. git ls-files --exclude-standard ${GIT_LS_FILES_FLAGS} \ | grep -E '\.(c|cpp|h|hpp)$' \ | grep -v -E '^lib/EpdFont/builtinFonts/' \ + | grep -v -E '^lib/Epub/Epub/hyphenation/generated/' \ | xargs -r clang-format -style=file -i