11 lines
159 B
Bash
11 lines
159 B
Bash
#! /bin/bash
|
|
|
|
path=`pwd`
|
|
|
|
if [ "$1" == "Debug" ]; then
|
|
$path/gateserver_d $path/GateServerLinux.txt
|
|
else
|
|
$path/gateserver_r $path/GateServerLinux.txt
|
|
fi
|
|
|