summaryrefslogtreecommitdiffhomepage
path: root/ci/ios/create-vm/scripts/install-brew-dependencies.sh
blob: abae2923b8417b67bd7f0c76599a3161202b3a5e (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 brew &>/dev/null
then
    echo "Installing xcodes"
    brew install xcodesorg/made/xcodes
    echo "Installing xcodes"
    brew install bash
fi