blob: c7096ac07716b12b801f5b1fb7c83a5b2efd9739 (
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/forgit.plugin.zsh\n"
printf "For tab completions source ~/.local/share/bash-completion/completions/git-forgit.bash afterwards\n\n"
# zsh
printf '%b' "\033[1mZsh\033[0m\n"
printf "To use this package source /usr/share/zsh/plugins/forgit/forgit.plugin.zsh\n\n"
}
post_upgrade() {
post_install
}
|