nuclide/nuclide-ds

11 lines
228 B
Bash
Executable File

#!/bin/sh
set -e
SCRPATH="$( cd "$( dirname $(readlink -nf $0) )" && pwd )"
PATH="$SCRPATH"/bin:"$PATH"
if [ -f "$SCRPATH"/bin/fteqw-sv ]; then
fteqw-sv $*
else
printf "Engine is not present, please run build_engine.sh\n"
fi