blob: 9159c90f21b2aa40cb2930050705310b3908f8bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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
# Xcode is needed in order to run swiftformat or swiftlint
brew install swiftformat swiftlint
|