#!/bin/sh
DIR=$(dirname $0)
if [ $# -eq 0 ]; then
  $DIR/reverseRuntime/bin/run "$@" >reverse.log 2>&1
else
  $DIR/reverseRuntime/bin/run "$@" 2>&1
fi
