blob: 0b6b9419b26d60513841077053942cb103e09cd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo
echo "You may symlink from /usr/bin/git-ssh to a local bin path"
echo "as the name: git so that all calls to git from most programs"
echo "resolve to the wrapper first."
echo
echo "This allows for actions like, for example:"
echo
echo " $ pass git --ssh aur push -u origin master"
echo
}
post_upgrade() {
post_install
}
|