blob: 9ba756e37335e5469efc1a15dd6e388ebe205925 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env 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
|