summaryrefslogtreecommitdiff
path: root/Biz/Ide/post-checkout
diff options
context:
space:
mode:
Diffstat (limited to 'Biz/Ide/post-checkout')
-rwxr-xr-xBiz/Ide/post-checkout14
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