blob: 4d7a5be05d12fc1952eea61914205c64cd26ffe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_upgrade() {
post_install $1
}
post_install() {
echo
echo "Make sure you removed all old personal config and cache files"
echo "before installing new version! Usually this means you have to"
echo "remove or rename ~/.vfu directory."
echo
echo "Install Net::FTP perl module for FTP support"
echo
echo "In case backspace doesn't work for you in urxvt, try adding this to ~/.Xdefaults :"
echo "Rxvt.backspacekey: ^H"
}
op=$1
shift
$op $*
|