Skip to content

Commit

Permalink
Don't build an empty installer. :)
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 17, 2007
1 parent 1754eb7 commit ad31e2c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples/ut3-dedicated/make.sh
Expand Up @@ -4,6 +4,14 @@
# example, but invest effort in what it's trying to do, and what it produces.
# (make sure you don't build in features you don't need, etc).

if [ ! -d data/Binaries ]; then
echo "We don't see data/Binaries ..."
echo " Either you're in the wrong directory, or you didn't copy the"
echo " install data into here (it's unreasonably big to store it in"
echo " Subversion for no good reason)."
exit 1
fi

# Stop if anything produces an error.
set -e

Expand Down

0 comments on commit ad31e2c

Please sign in to comment.