mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-11 11:48:40 +00:00
12 lines
258 B
Bash
12 lines
258 B
Bash
#!/bin/bash
|
|
|
|
git diff --cached --name-only | while read FILE; do
|
|
if [[ ! -f "$FILE" ]]; then
|
|
exit 0
|
|
fi
|
|
done
|
|
|
|
. ${rootpath}/Build/Hooks/logging.sh
|
|
. ${rootpath}/Build/Hooks/syntax.sh
|
|
. ${rootpath}/Build/Hooks/filename.sh
|
|
. ${rootpath}/Build/Hooks/tests.sh |