-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpre-commit
42 lines (35 loc) · 1.08 KB
/
pre-commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
# Automaticly sorts mapping and updates progress record before commiting.
# Put in .git/hooks/ of this repository
REPO_ROOT=$(git rev-parse --show-toplevel)
# Sort the mapping
if ! python "$REPO_ROOT/extras/sorter/sorter.py"; then
echo "Error: sorter.py failed. Commit cancelled."
exit 1
fi
# Verify the inheritance
python "$REPO_ROOT/extras/verifier/InheritanceVerifier.py"
exit_code=$?
if [ $exit_code -ne 1 ]; then
echo "Error: Inheritance Errors detected. Commit cancelled."
exit 1
fi
# Update progress log
if ! python "$REPO_ROOT/extras/logger/logger.py"; then
echo "Error: logger.py failed. Commit cancelled."
exit 1
fi
# Add the generated files to the commit
if ! git add "$REPO_ROOT/extras/logger/progress.log"; then
echo "Error: Failed to add progress.log to commit."
exit 1
fi
if ! git add "$REPO_ROOT/extras/logger/progress_chart.png"; then
echo "Error: Failed to add progress_chart.png to commit."
exit 1
fi
if ! git add "$REPO_ROOT/Recaf/GoF2/GoF2_JSR_1.0.4.mapping"; then
echo "Error: Failed to add GoF2_JSR_1.0.4.mapping to commit."
exit 1
fi
git status