#!/bin/bash -e
# iosSimulatorRun.sh
#
# Run iOS simulator

if [ -z "$1" ]
then
    echo "iOS simulator UUID is not specified"
    exit 1
fi

uuid=$1

xcrun simctl boot $uuid
open -a Simulator
