Sha256: 094e3c4d34fb6039eb37da59723be51e365bbaf2a6633ebb02d40e3204d7899a
Contents?: true
Size: 434 Bytes
Versions: 5
Compression:
Stored size: 434 Bytes
Contents
#!/bin/bash # Copyright (c) 2012 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. set -e found=false for sdk in 10.6 10.7 10.8 10.9 ; do if expected=$(xcodebuild -version -sdk macosx$sdk Path 2>/dev/null) ; then found=true break fi done if ! $found ; then echo >&2 "cannot find installed SDK" exit 1 fi test $SDKROOT = $expected
Version data entries
5 entries across 5 versions & 2 rubygems