aboutsummaryrefslogtreecommitdiff
path: root/run_client.sh
blob: 5898f52b8b140a47822415043c3c9747e67af37e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

cd ./data/fscord
if [ "$1" = "debug" ]; then
    gdb ./fscord
else
    ./fscord
fi
cd ../..