diff options
author | stuconnolly <stuart02@gmail.com> | 2010-03-27 02:03:22 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-03-27 02:03:22 +0000 |
commit | 397823b66a92724b40d015160cc32f514c2b7214 (patch) | |
tree | e92f8a4468ceb7a1fed530215385771b8cd31600 /Scripts | |
parent | 0201464cf3c23d82ea5a476d9224e82ec5b2e479 (diff) | |
download | sequelpro-397823b66a92724b40d015160cc32f514c2b7214.tar.gz sequelpro-397823b66a92724b40d015160cc32f514c2b7214.tar.bz2 sequelpro-397823b66a92724b40d015160cc32f514c2b7214.zip |
Error messages output from the build script need to be prefixed with lowercase 'error:' in order to be treated as build errors by Xcode.
Diffstat (limited to 'Scripts')
-rwxr-xr-x | Scripts/build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
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 |