#!/bin/sh

if [ -d apps ]
then
    if [ ! -n "$OX_APPSUITE_DEV" ]
    then
        OX_APPSUITE_DEV="$(dirname $(dirname $0))"
    fi
    sh "$OX_APPSUITE_DEV/bin/build.sh" "$@"
else
    echo No apps directory found. Are you in the correct directory?
    exit 1
fi
