blob: 2b242f986ff7da6e747b1a18b7140d7e1dbcbe27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo "Additional setup is needed, as freeablo only searches for resources in the"
echo "current directory:"
echo "You will need to put the files 'DIABDAT.MPQ' and 'Diablo.exe'"
echo "in /opt/freeablo."
echo ""
echo "This will not work well on multi-user systems. I need to"
echo "figure out how to allow multiple users to use multiple save files"
}
post_upgrade() {
post_install
}
|