diff options
author | fschildt <florian.schildt@protonmail.com> | 2025-08-22 15:23:11 +0200 |
---|---|---|
committer | fschildt <florian.schildt@protonmail.com> | 2025-08-22 15:23:11 +0200 |
commit | 2050c0e0576f05156f192aa4caf48834d2f28b14 (patch) | |
tree | ee58bd35b0df0a1bacfbc9700ed99ce80c99294e /run_server.sh |
Diffstat (limited to 'run_server.sh')
-rwxr-xr-x | run_server.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/run_server.sh b/run_server.sh new file mode 100755 index 0000000..a9c5eba --- /dev/null +++ b/run_server.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +cd ./data/fscord_server +if [ "$1" = "debug" ]; then + gdb --args ./fscord_server -port 1905 +else + ./fscord_server -port 1905 +fi +cd ../.. |