build_game.sh: Don't insist on using the local fteqcc
This commit is contained in:
parent
27308ff1f4
commit
8aee63968d
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ set -e
|
|||
SCRPATH="$( cd "$( dirname $(readlink -nf $0) )" && pwd )"
|
||||
PATH="$SCRPATH"/bin:"$PATH"
|
||||
|
||||
if [ -f "$SCRPATH"/bin/fteqcc ]; then
|
||||
if [ -x "$(command -v fteqcc)" ]; then
|
||||
|
||||
# We want to compile a specific game
|
||||
if [ $# -gt 0 ]; then
|
||||
|
|
Loading…
Reference in a new issue