blob: ccc155eeb01e2d21476bd4aae5e7624b9800ae70 (
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} -u -d ../../client-data evol.manaplus
|