blob: ca93f44e8764993e0b991bbed7cf2d2a9dad3a9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
# bash
printf '%b' "\033[1mBash\033[0m\n"
printf "To use this package source /usr/share/zsh/plugins/forgit-git/forgit.plugin.zsh\n"
printf "For tab completions source /usr/share/bash-completion/completions/git-forgit afterwards\n\n"
# zsh
printf '%b' "\033[1mZsh\033[0m\n"
printf "To use this package source /usr/share/zsh/plugins/forgit-git/forgit.plugin.zsh\n\n"
}
post_upgrade() {
post_install
}
|