7 lines
140 B
Bash
Executable File
7 lines
140 B
Bash
Executable File
#! /bin/bash
|
|
path=`pwd`
|
|
if [ "$1" == "Debug" ]; then
|
|
$path/robootgate_d GateServerLinux.txt
|
|
else
|
|
$path/robootgate_r GateServerLinux.txt
|
|
fi |