1
0
Fork 0
vim/debian/vim-runtime.postinst
Daniel Baumann af310a8bc4
Adding debian version 2:9.1.1230-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 11:09:32 +02:00

12 lines
271 B
Bash

#!/bin/sh
set -e
# Need to run helpztags since we're overwriting /u/s/v/a/d/tags whenever
# vim-runtime is install/upgraded which breaks the help for other vim addons
if which helpztags >/dev/null 2>&1; then
helpztags /usr/share/vim/addons/doc
fi
#DEBHELPER#
exit 0