summaryrefslogtreecommitdiff
path: root/Biz/Ide/post-checkout
blob: 41ede5970d00afd6bfc7830b8df9583b5e6fa1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
set -eu
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