aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rwxr-xr-xaux/assert-clang-format.sh16
2 files changed, 0 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index a4034ae..6abcc41 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,6 @@ check: all
dev-check: check fallible-tests
valgrind `fallible-check --valgrind-flags` ./run-tests
fallible-check ./fallible-tests
- sh aux/assert-clang-format.sh
sh aux/assert-shellcheck.sh
sh aux/workflow/assert-todos.sh
sh aux/workflow/assert-changelog.sh $(NAME)
diff --git a/aux/assert-clang-format.sh b/aux/assert-clang-format.sh
deleted file mode 100755
index cf3fbb4..0000000
--- a/aux/assert-clang-format.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-set -eu
-
-if [ "${1:-}" = '--fix-in-place' ]; then
- find . -type f \( -name '*.h' -o -name '*.c' \) -exec clang-format -i {} \;
- exit 0
-fi
-
-# shellcheck disable=2016
-find . -type f \( -name '*.h' -o -name '*.c' \) -exec sh -c '
- clang-format "$1" | diff - "$1" || {
- echo "Unformatted C code. To fix it, run:"
- echo " ./aux/assert-clang-format.sh --fix-in-place"
- exit 1
- }
-' _ {} +