#!/bin/sh
#
# getInstallBin - Get the executable bin used to install app
#

INSTALL_ROOT=`getInstallRoot`

# Default is /usr/local/bin, but install root is often changed

# You can override this script if you want to put the binary elsewhere

echo "$INSTALL_ROOT/bin"
