#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")

case `uname` in
    *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
esac

if [ -x "$basedir/cs" ]; then
  "$basedir/cs" "$@"
  ret=$?
else 
  echo "Binary not found. Please try reinstalling the package."
  exit 1
fi
exit $ret
