summaryrefslogtreecommitdiff
path: root/other/astyle/pre-commit
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-04-29 01:02:47 +0200
committermannol <eniz_vukovic@hotmail.com>2015-04-29 01:02:47 +0200
commitd8c34f4ffafedc256e9a52af5e591c4998c0003d (patch)
tree190b3605de8f24a85caace8a841115e96dc4e539 /other/astyle/pre-commit
parent9bba7a0434d0967d5dd76b8afc7783ea2edad0cf (diff)
parent3454bc7da78e467f55f6b7fea4e03775d2649a63 (diff)
Merge branch 'master' into new_api
Diffstat (limited to 'other/astyle/pre-commit')
-rw-r--r--other/astyle/pre-commit17
1 files changed, 17 insertions, 0 deletions
diff --git a/other/astyle/pre-commit b/other/astyle/pre-commit
new file mode 100644
index 00000000..8f91779d
--- /dev/null
+++ b/other/astyle/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