diff options
-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 |