1#!/bin/sh 2 3set -eux 4 5if [ "${CI_XCODEBUILD_EXIT_CODE:-0}" = 0 ]; then 6 ./send_build_notification.py finished || : 7else 8 ./send_build_notification.py failed || : 9fi 10 11