1

少し手伝ってくれませんか?

次のスクリプトを使用する場合:

# Find the common base directory for both build
XCODE_BUILD=${BUILD_ROOT%%/Build*}
# Change this to the full path where Xcode 4.4 (or below) puts your armv6 output, using the previously derived base
export ARMV6_EXECUTABLE_PATH="$XCODE_BUILD/Build/Products/Release_armv6-iphoneos/$EXECUTABLE_PATH"

ビルドは失敗し、メッセージは次のとおりです。

Missing }.
Command /bin/sh failed with exit code 1

私が間違っていることは何ですか?

ご協力いただきありがとうございます。

4

1 に答える 1

0

バグを解決しました。

したがって、上記の行を次の行から変更すると、アプリケーションをビルドしてアーカイブすることもできます。

# Find the common base directory for both build
setenv XCODE_BUILD `echo $BUILD_ROOT| sed 's|Build.*||'`
echo $XCODE_BUILD
# Change this to the full path where Xcode 4.4 (or below) puts your armv6 output, using the previously derived base
setenv ARMV6_EXECUTABLE_PATH "$XCODE_BUILD/Build/Products/Release_armv6-iphoneos/$EXECUTABLE_PATH"
于 2012-11-20T09:16:22.020 に答える