From 397823b66a92724b40d015160cc32f514c2b7214 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Sat, 27 Mar 2010 02:03:22 +0000 Subject: Error messages output from the build script need to be prefixed with lowercase 'error:' in order to be treated as build errors by Xcode. --- Scripts/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Scripts') diff --git a/Scripts/build.sh b/Scripts/build.sh index 02795ac9..b2822012 100755 --- a/Scripts/build.sh +++ b/Scripts/build.sh @@ -21,7 +21,7 @@ GENSTRINGS_ERRORS=$(genstrings -o "${SRCROOT}/Resources/English.lproj" "${SRCROO # Check for genstrings errors if [ $? -ne 0 ] then - echo "Error: genstrings exited with error: ${GENSTRINGS_ERRORS}" + echo "error: genstrings exited with error: ${GENSTRINGS_ERRORS}" fi echo 'Updating build version...' @@ -51,8 +51,8 @@ then if [ "$VERIFYERRORS" != '' ] then - echo "Error: Signing verification threw an error: $VERIFYERRORS" - echo "Error: All distribution builds must be signed with the key used for all previous distribution signing!" + echo "error: Signing verification threw an error: $VERIFYERRORS" + echo "error: All distribution builds must be signed with the key used for all previous distribution signing!" exit 1 fi -- cgit v1.2.3