summaryrefslogtreecommitdiff
path: root/Biz/Ide/hooks/post-checkout
diff options
context:
space:
mode:
Diffstat (limited to 'Biz/Ide/hooks/post-checkout')
-rwxr-xr-xBiz/Ide/hooks/post-checkout15
1 files changed, 0 insertions, 15 deletions
diff --git a/Biz/Ide/hooks/post-checkout b/Biz/Ide/hooks/post-checkout
deleted file mode 100755
index 73488b0..0000000
--- a/Biz/Ide/hooks/post-checkout
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env bash
-set -e
-mktags=${CODEROOT:?}/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 "$CODEROOT"/**/*
-elif [[ ${#changed[@]} -gt 0 ]]
-then
- $mktags $changed
-fi
-direnv reload