summaryrefslogtreecommitdiff
path: root/Biz/Ide/hooks/post-checkout
blob: ef0cfa182661a22194e725811f29fe760f5c6cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
set -e
mktags=${BIZ_ROOT:?}/Biz/Ide/mktags
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 ]] || [[ ! -r TAGS ]]
then
    $mktags "$BIZ_ROOT"/**/*
elif [[ ${#changed[@]} -gt 0 ]]
then
    $mktags $changed
fi
direnv reload