We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd5335f commit 1d0c155Copy full SHA for 1d0c155
1 file changed
scripts/build-plugin.sh
@@ -39,9 +39,10 @@ build_plugin() {
39
DEVELOPMENT_TEAM="$TEAM_ID" \
40
-skipPackagePluginValidation \
41
-derivedDataPath "$DERIVED_DATA_DIR" \
42
- build 2>&1 | tee "build-plugin-${arch}.log" >&2; then
+ build > "build-plugin-${arch}.log" 2>&1; then
43
echo "FATAL: xcodebuild failed for $PLUGIN_TARGET ($arch)" >&2
44
- echo "Check build-plugin-${arch}.log for details" >&2
+ echo "Last 30 lines of build log:" >&2
45
+ tail -30 "build-plugin-${arch}.log" >&2
46
exit 1
47
fi
48
0 commit comments