jjb: typo in clang-tidy regex 'hhp' -> 'hpp'
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 23 Jul 2024 20:50:52 +0000 (16:50 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Tue, 23 Jul 2024 20:56:06 +0000 (16:56 -0400)
Change-Id: Ic58bcb48a25fe48c835b5366d75a5c5696dc0f5e
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
scripts/babeltrace/build.sh
scripts/liburcu/build.sh
scripts/lttng-tools/build.sh
scripts/lttng-ust/build.sh

index 12900c74fe0e07c66ce6c649e9dd85fa31df4ec6..a0246ab646329f4867df13533e35bcbcba9b0005 100755 (executable)
@@ -436,7 +436,7 @@ if [ "$BABELTRACE_CLANG_TIDY" = "yes" ]; then
 
     # Instead, run clan-tidy on all the files touched by the patch.
     while read -r filepath; do
-        if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
+        if [[ "$filepath" =~ (\.cpp|\.hpp|\.c|\.h)$ ]]; then
             clang-tidy --fix-errors "$(realpath "$filepath")"
         fi
     done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
index d7ae0d1641d75edf6c52d0a8935f4d681cca79bc..2831c8885552b437cb012a03f2ef57431a19f36e 100755 (executable)
@@ -378,7 +378,7 @@ if [ "$USERSPACE_RCU_CLANG_TIDY" = "yes" ]; then
 
     # Instead, run clan-tidy on all the files touched by the patch.
     while read -r filepath; do
-        if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
+        if [[ "$filepath" =~ (\.cpp|\.hpp|\.c|\.h)$ ]]; then
             clang-tidy --fix-errors "$(realpath "$filepath")"
         fi
     done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
index bb2b6b59e085e603b5c399c335469c299753468c..d6e9a86b7b79f649912a97ed28dfb22741157a33 100755 (executable)
@@ -513,7 +513,7 @@ if [ "$LTTNG_TOOLS_CLANG_TIDY" = "yes" ]; then
 
     # Instead, run clan-tidy on all the files touched by the patch.
     while read -r filepath; do
-        if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
+        if [[ "$filepath" =~ (\.cpp|\.hpp|\.c|\.h)$ ]]; then
             clang-tidy --fix-errors "$(realpath "$filepath")"
         fi
     done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
index 842206cc8e9b805fe68940e28f76227c189de34b..26672ca084d4367ab9a98eef3a5680f4193c2282 100755 (executable)
@@ -370,7 +370,7 @@ if [ "$LTTNG_UST_CLANG_TIDY" = "yes" ]; then
 
     # Instead, run clan-tidy on all the files touched by the patch.
     while read -r filepath; do
-        if [[ "$filepath" =~ (\.cpp|\.hhp|\.c|\.h)$ ]]; then
+        if [[ "$filepath" =~ (\.cpp|\.hpp|\.c|\.h)$ ]]; then
             clang-tidy --fix-errors "$(realpath "$filepath")"
         fi
     done < <(git diff-tree --no-commit-id --diff-filter=d --name-only -r HEAD)
This page took 0.034979 seconds and 4 git commands to generate.