summaryrefslogtreecommitdiff
path: root/pre-commit.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pre-commit.sh')
-rwxr-xr-xpre-commit.sh11
1 files changed, 2 insertions, 9 deletions
diff --git a/pre-commit.sh b/pre-commit.sh
index 6841365..85253dd 100755
--- a/pre-commit.sh
+++ b/pre-commit.sh
@@ -1,11 +1,4 @@
#!/bin/sh
-if sed --version | grep -q 'GNU sed'; then
- for file in pom.c pom.h; do
- # Remove trailing white space
- # (But only if file actually has trailing white space
- # we don't want to mess up last-modified-times otherwise)
- grep -q '\s\s*$' $file && sed -i 's/\s\s*$//' $file
- done
-fi
+
+# Ensure no doxygen errors
which doxygen >/dev/null 2>/dev/null && { doxygen || exit 1; }
-git add -u