#!/bin/sh
#
# Just call install-bin, and install-site.
#
if install-bin; then
   if [ -d server -o -d engine ]; then
      install-site;
   fi
fi

