blob: 10f244659b2bc00a43e69c73609d9ebe64b62ae1 (
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 ~/.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-git/forgit.plugin.zsh\n\n"
}
post_upgrade() {
post_install
}
|