commit acf96ea10f0e157e3ec20ec09636198aceaa4e07
parent 6c5c6d9b62be8e48785643cfbe61e961f99ffe81
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Sun, 23 Feb 2020 20:27:19 +0100
git: fix ctags options issue
Former-commit-id: 08bb6bb1c30ab008fa8174830652ff4b7c017215
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/git/git_template/hooks/ctags b/git/git_template/hooks/ctags
@@ -4,5 +4,5 @@ PATH="/usr/local/bin:$PATH"
dir="`git rev-parse --git-dir`"
trap 'rm -f "$dir/$$.tags"' EXIT
git ls-files | \
- ctags --tag-relative -L - -f "$dir/$$.tags"
+ ctags --tag-relative=yes -L - -f "$dir/$$.tags"
mv "$dir/$$.tags" "$dir/tags"