aboutsummaryrefslogtreecommitdiffstats
path: root/modules/subversion/templates/syntax_check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'modules/subversion/templates/syntax_check.sh')
-rw-r--r--modules/subversion/templates/syntax_check.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/subversion/templates/syntax_check.sh b/modules/subversion/templates/syntax_check.sh
new file mode 100644
index 00000000..2fe1671c
--- /dev/null
+++ b/modules/subversion/templates/syntax_check.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+REPOS="$1"
+TXN="$2"
+
+changed=`svnlook changed -t "$TXN" "$REPOS"`
+files=`echo $changed | awk '{print $2}'`
+if echo $files | grep <%= regexp_ext %>
+then
+ svnlook cat -t "$TXN" "$REPOS" "$files" | <%= check_cmd %>
+ if [ $? -ne 0 ]
+ then
+ echo "Syntax error in $files." 1>&2
+ echo "Check it with <%= check_cmd %>"
+ exit 1
+ fi
+fi
+
+# All checks passed, so allow the commit.
+exit 0
+