IssueID #1104: separated git hook from command script (so it can be run independently)

This commit is contained in:
Cyprian Laskowski
2020-02-21 20:44:39 +01:00
parent 47802a3577
commit d9eab477fd
3 changed files with 24 additions and 18 deletions

9
scripts/validate_examples_hook Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
branch=`git rev-parse --abbrev-ref HEAD`
script_dir="$(dirname "$(readlink -f "$0")")"
cd $script_dir
if [[ $branch == "master" ]]; then
./validate_examples
fi