blob: 0d5780bec2bb537270849960033c5a86dd0a170b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
echo ':: This plugin requires manual setup.'
echo ':: Consult upstream documentation for more information.'
echo ':: A copy has been installed under /usr/share/doc/neovim-tree-lua-git/README.md for your reference.'
}
post_upgrade() {
if [[ $(vercmp 1.3.0 "$2") -eq 1 ]]; then
echo ':: Breaking changes from upstream now require manual setup in your init scripts.'
echo ':: Check upstream documentation for more information.'
fi
}
post_remove() {
echo ':: Remember to remove all references to this plugin from your init scripts.'
}
|