mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-05 17:40:51 +08:00
iOS 8 SDK path was changed as symbolic link.
$ ls -la /Applications/Xcode6-Beta6.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
total 8
drwxr-xr-x@ 4 watson admin 136 8 19 14:31 .
drwxr-xr-x@ 5 watson admin 170 8 19 06:19 ..
drwxr-xr-x@ 12 watson admin 408 8 19 03:59 iPhoneSimulator.sdk
lrwxr-xr-x 1 watson admin 19 8 19 06:19 iPhoneSimulator8.0.sdk -> iPhoneSimulator.sdk
This patch skips iPhoneSimulator.sdk because it cannot retrieve SDK version number and causes an error.
8 lines
163 B
Bash
Executable File
8 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# EX)
|
|
# ./build.sh clean:vm
|
|
# ./build.sh
|
|
rake $*
|
|
SDK_BETA=1 XCODE_PLATFORMS_DIR=/Applications/Xcode6-Beta6.app/Contents/Developer/Platforms rake $*
|