#!/bin/sh

# Fail immediately
set -e

# Move to the bin directory
BIN_DIR=`dirname $0`
cd ${BIN_DIR}

# Runs the OfficeFloor demo tool
java \
	-cp ../lib/officetool_demo.jar \
	net.officefloor.demo.gui.DemoApp \
	$@