diff options
author | Ben Sima <ben@bsima.me> | 2022-02-09 18:13:40 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-02-09 18:16:26 -0500 |
commit | f664669439c0f005e3579d1c67b4ebd9fa24de36 (patch) | |
tree | b2eadfc5ad5aab3452285da6c23e4f601fcdd334 /Biz/Ide/post-checkout | |
parent | f21e2920872fdf3c92dc815d51d6da032d157fea (diff) |
Move git hooks to own folder
Instead of symlinking, just set the local git config.
Diffstat (limited to 'Biz/Ide/post-checkout')
-rwxr-xr-x | Biz/Ide/post-checkout | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Biz/Ide/post-checkout b/Biz/Ide/post-checkout deleted file mode 100755 index 95b35cd..0000000 --- a/Biz/Ide/post-checkout +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -set -e -init_tags=$BIZ_ROOT/Biz/Ide/init_tags.sh -old=$1 -new=$2 -# filter out only the changed haskell files -changed=($(git diff --diff-filter=d --name-only $old $new -- '*.hs')) -if [[ ! -r tags ]] -then - $init_tags -elif [[ ${#changed[@]} -gt 0 ]] -then - $init_tags $changed -fi |