Skip to content

Instantly share code, notes, and snippets.

@JoeArauzo
Created May 21, 2020 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoeArauzo/340bd84616c11485afb4ebad1bf0e474 to your computer and use it in GitHub Desktop.
Save JoeArauzo/340bd84616c11485afb4ebad1bf0e474 to your computer and use it in GitHub Desktop.
Unattended installation of xcode cli tools
#!/usr/bin/env bash
# original script at https://github.com/timsutton/osx-vm-templates/blob/master/scripts/xcode-cli-tools.sh
xcode-select -p &>/dev/null
if [[ $? == 0 ]]; then
exit
fi
# Get and install Xcode CLI tools
OSX_VERS=$(sw_vers -productVersion | awk -F "." '{print $2}')
# on 10.9+, we can leverage SUS to get the latest CLI tools
if [ "$OSX_VERS" -ge 9 ]; then
# create the placeholder file that's checked by CLI updates' .dist code
# in Apple's SUS catalog
touch /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress
# find the CLI Tools update
PROD=$(softwareupdate -l | grep "\*.*Command Line" | tail -n 1 | awk -F"*" '{print $2}' | sed -e 's/^ *//' | tr -d '\n')
# install it
softwareupdate -i "$PROD" --verbose
rm /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress
# on 10.7/10.8, we instead download from public download URLs, which can be found in
# the dvtdownloadableindex:
# https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/index-3905972D-B609-49CE-8D06-51ADC78E07BC.dvtdownloadableindex
else
[ "$OSX_VERS" -eq 7 ] && DMGURL=http://devimages.apple.com.edgekey.net/downloads/xcode/command_line_tools_for_xcode_os_x_lion_april_2013.dmg
[ "$OSX_VERS" -eq 8 ] && DMGURL=http://devimages.apple.com.edgekey.net/downloads/xcode/command_line_tools_for_osx_mountain_lion_april_2014.dmg
TOOLS=clitools.dmg
curl "$DMGURL" -o "$TOOLS"
TMPMOUNT=`/usr/bin/mktemp -d /tmp/clitools.XXXX`
hdiutil attach "$TOOLS" -mountpoint "$TMPMOUNT"
if [ "$OSX_VERS" -eq 7 ]; then
# using '-allowUntrusted' because Lion CLI tools are so old Apple never built another
# package that doesn't have an expired CA cert. (Expired February 15, 2015)
installer -pkg "$(find $TMPMOUNT -name '*.mpkg')" -allowUntrusted -target /
else
installer -pkg "$(find $TMPMOUNT -name '*.mpkg')" -target /
fi
hdiutil detach "$TMPMOUNT"
rm -rf "$TMPMOUNT"
rm "$TOOLS"
exit
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment