summarylogtreecommitdiffstats
path: root/git-extras.install
blob: 10ab9548943127229039166fde0e0ad6ac53e137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# arg 1:  the new package version
post_install() {
cat << EOF
If you are a zsh user, you may want to 'source /usr/share/doc/git-extras/git-extras-completion.zsh' and put this line into ~/.zshrc to enable zsh completion
If you are a fish user, you may want to copy or link '/usr/share/doc/git-extras/git-extras.fish' to '~/.config/fish/completions/'
EOF
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
	post_install
}

# arg 1:  the old package version
# post_remove() {
# }