blob: 26102f5328040f89c696078de0e0cbd4ddbec96b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
set -euo pipefail
# shellcheck source=/dev/null
source ~/.bash_profile
echo >&1 "Installing xcode"
xcodes install "${XCODE_VERSION}" --path "${XCODE_SHARED_PATH}/${XCODE_XIP_NAME}" --experimental-unxip
xcodes select "${XCODE_VERSION}"
|