1#!/bin/sh
2set -o xtrace   # Write all commands first to stderr
3set -o errexit  # Exit the script with error if any of the commands fail
4
5OS=$(uname -s | tr '[:upper:]' '[:lower:]')
6
7case "$OS" in
8   cygwin*)
9      sh ./.evergreen/compile-windows.sh
10   ;;
11
12   *)
13      sh ./.evergreen/compile-unix.sh
14   ;;
15esac
16