8 lines
127 B
Bash
Executable file
8 lines
127 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
xcodebuild -version || :
|
|
xcodebuild -showsdks || :
|
|
|
|
system_profiler SPSoftwareDataType || :
|