blob: 636fad64e219efe86264b679d4902b4a8220e319 (
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:-0} -gt 0 ]]
then
$init_tags $changed
fi
|