mirror of
https://github.com/appium/appium.git
synced 2026-05-01 16:00:20 -05:00
9 lines
217 B
Bash
Executable File
9 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
set +e
|
|
echo OS X version: `sw_vers -productVersion`
|
|
echo Xcode version: `xcodebuild build -version`
|
|
echo Xcode path: `xcode-select --print-path`
|
|
echo Node.js version: `node -v`
|
|
echo JAVA_HOME: $JAVA_HOME
|
|
|