Browse Source

CI: Don't run clang format on some submodule plugins

Colin Edwards 5 years ago
parent
commit
e4bfd03944
1 changed files with 10 additions and 1 deletions
  1. 10 1
      formatcode.sh

+ 10 - 1
formatcode.sh

@@ -27,5 +27,14 @@ else
     CLANG_FORMAT=clang-format
     CLANG_FORMAT=clang-format
 fi
 fi
 
 
-find . -type d \( -path ./deps -o -path ./cmake -o -path ./plugins/decklink/win -o -path ./plugins/decklink/mac -o -path ./plugins/decklink/linux -o -path ./build \) -prune -type f -o -name '*.h' -or -name '*.hpp' -or -name '*.m' -or -name '*.mm' -or -name '*.c' -or -name '*.cpp' \
+find . -type d \( -path ./deps \
+-o -path ./cmake \
+-o -path ./plugins/decklink/win \
+-o -path ./plugins/decklink/mac \
+-o -path ./plugins/decklink/linux \
+-o -path ./plugins/enc-amf \
+-o -path ./plugins/mac-syphon/syphon-framework \
+-o -path ./plugins/obs-outputs/ftl-sdk \
+-o -path ./plugins/obs-vst \
+-o -path ./build \) -prune -type f -o -name '*.h' -or -name '*.hpp' -or -name '*.m' -or -name '*.mm' -or -name '*.c' -or -name '*.cpp' \
 | xargs -I{} -P ${NPROC} ${CLANG_FORMAT} -i -style=file  -fallback-style=none {}
 | xargs -I{} -P ${NPROC} ${CLANG_FORMAT} -i -style=file  -fallback-style=none {}