13 lines
225 B
Bash
Executable file
13 lines
225 B
Bash
Executable file
#!/bin/sh
|
|
SRCPATH="$( cd "$( dirname $(readlink -nf $0) )" && pwd )"
|
|
|
|
if [ ! -f "$SRCPATH"/bin/worldspawn ]; then
|
|
printf "Map editor is not present, please run build_editor.sh\n"
|
|
exit
|
|
fi
|
|
|
|
cd "$SRCPATH"/bin
|
|
./worldspawn
|
|
|
|
|
|
|