blob: c0d33de4b73ad88ed7c6fc56bb613cb99f355c17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -euo pipefail
# shellcheck source=/dev/null
source ~/.bash_profile
if command -v xcodebuild &>/dev/null
then
echo >&1 "Running xcodebuild -runFirstLaunch"
xcodebuild -runFirstLaunch
echo >&1 "Downloading iOS Simulator runtime, this might take a while"
xcodebuild -downloadPlatform iOS
fi
|