#!/bin/bash

directory=$(dirname $0)
if hash cygpath 2>/dev/null; then
	directory=$(cygpath -w $directory)
fi

python "${directory}/build.py" "$@"
out=$?
exit $out

