From 506501f55e806eea75c1816e318edc2cde51b18a Mon Sep 17 00:00:00 2001 From: Doug Bird Date: Tue, 12 Jun 2018 18:39:58 -0700 Subject: [PATCH] quiet mode --- bin/update-formats.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/update-formats.sh b/bin/update-formats.sh index fa4c6cf..fbcc654 100755 --- a/bin/update-formats.sh +++ b/bin/update-formats.sh @@ -127,10 +127,13 @@ helper generate-json-tld-enum.js "new JSON format files" if [ "$SKIP_PHP" != "1" ]; then helper generate-php-tld-enum.php "new PHP format files" else - [ "$QUIET_MODE" = "0" ] && echo "$ME_NAME: (NOTICE) skipped PHP" + [ "$QUIET_MODE" = "0" ] && echo "$ME_NAME: (NOTICE) skipped PHP format files" +fi + +if [ "$QUIET_MODE" = "0" ]; then + echo "format updates were successful" fi -echo "$ME_NAME: format updates were successful"