#!/bin/sh # OS specific support. $var _must_ be set to either true or false. cygwin=false; darwin=false; case "`uname`" in CYGWIN*) cygwin=true ;; Darwin*) darwin=true ;; esac ANTANT_HOME=`dirname "$0"` # For Cygwin, ensure paths are in win format before anything is touched if $cygwin ; then [ -n "$ANTANT_HOME" ] && ANTANT_HOME=`cygpath --windows "$ANTANT_HOME"` fi ant -buildfile $ANTANT_HOME/antant.xml