summaryrefslogtreecommitdiff
path: root/tools/pre-commit
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-15 16:58:27 -0700
committerirungentoo <irungentoo@gmail.com>2013-08-15 16:58:27 -0700
commit0a00c5c29143b2613a512c5ff3f5f6c1e390f1ac (patch)
tree8b0a059cf26481bcfdcf00ba41707787a8ee42b0 /tools/pre-commit
parent75873e31db5a881cdd0caf408c192e91b1901149 (diff)
parentd0098efa958ca82dc9c65c93b5830d727422faef (diff)
Merge pull request #457 from aaboagye/master
core,nTox,toxic - Fix for Issue #453. Begin refactoring w/astyle.
Diffstat (limited to 'tools/pre-commit')
-rw-r--r--tools/pre-commit17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/pre-commit b/tools/pre-commit
new file mode 100644
index 00000000..8f91779d
--- /dev/null
+++ b/tools/pre-commit
@@ -0,0 +1,17 @@
1#!/usr/bin/env sh
2#
3# An example hook script to verify what is about to be committed.
4# Called by "git commit" with no arguments. The hook should
5# exit with non-zero status after issuing an appropriate message if
6# it wants to stop the commit.
7#
8# To enable this hook, rename this file to "pre-commit".
9
10for file in `git diff-index --diff-filter=ACMR --name-only HEAD`; do
11 if [[ $file == *.c || $file == *.h ]]
12 then
13 echo $file
14 `which astyle` $file --options=tools/astylerc
15 git add $file
16 fi
17done \ No newline at end of file