This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This snippet should hypothetically allow a totally unattended | |
# download of Apple's Xcode. After sourcing credentials from ENV, | |
# the script simulates a login, and downloads the XCode DMG. | |
# Based on: https://gist.github.com/cdata/817672 | |
source /vagrant/apple_creds.sh | |
login="$ADC_LOGIN" | |
password="$ADC_PASSWORD" |