blob: 93fb4ec063b0c26d1b0b630dd4f803d918488f92 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env sh
cd /opt/freeablo
if [ -f "Diablo.exe" ] && [ -f "DIABDAT.MPQ" ]; then
./freeablo
else
printf "Diablo.exe and/or DIABDAT.MPQ are not present.\nPlease put a copy of Diablo.exe and DIABDAT.MPQ in /opt/freeablo."
fi
# I don't think this program was ever designed to be installed in anything but your home dir
|