summaryrefslogtreecommitdiff
path: root/tools/pre-commit
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-04-25 20:39:13 -0400
committerirungentoo <irungentoo@gmail.com>2015-04-25 20:39:13 -0400
commit422e74424a759c31d1dcfe0d1d9fbce3f39efb32 (patch)
tree2573d07ace13214f568d917ea70020c66c342b33 /tools/pre-commit
parent28de3f59fdfc185e42d3d5393de7fd5ba78eae5d (diff)
Switched tox.h to the dsl generated one.
Added input file to generate it. Moved the astyle stuff to the astyle directory in other/.
Diffstat (limited to 'tools/pre-commit')
-rw-r--r--tools/pre-commit17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/pre-commit b/tools/pre-commit
deleted file mode 100644
index 8f91779d..00000000
--- a/tools/pre-commit
+++ /dev/null
@@ -1,17 +0,0 @@
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