#!/bin/sh # # Cleanup for Appveyor peculiarities. # # Echo, eval, and error on shell commands. eeval() { echo "$0: $*" >&2 eval "$@" rv=$? if [ $rv -ne 0 ]; then echo "$0: failed, exitcode $rv" exit $rv fi return 0 } # We inherit a broken Windows path with a Windows Git. PATH=/bin # This supposedly fixes some failures. exec 0