blob: 314d77299566209396f8d7d8b790eecb96136707 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
export MANAPLUS="../../manaplus/src/manaplus"
if [ -f "$MANAPLUS" ]; then
echo "Starting local manaplus"
else
echo "Starting system manaplus"
export MANAPLUS="manaplus"
fi
${MANAPLUS} -d ../../client-data evol.manaplus
|