diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-12-10 16:49:23 -0600 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-12-11 05:10:27 +0100 |
commit | 0f0d49721790102e7f93e9896bdff204e24ac0d9 (patch) | |
tree | 7ff9185f041402a2872c1f94b1742c3b95e3723e /util/abuild | |
parent | 87543425d7734099aed6c1def595ee4d710d6ce0 (diff) |
abuild: Don't print "Using payload ..." message in quiet mode
It's not useful in quiet mode, and is very distracting.
Change-Id: I59dc8caa22b66980560d5afb76eae801efaa29ad
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/124
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'util/abuild')
-rwxr-xr-x | util/abuild/abuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index 682da96d98..3500ef8bd2 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -150,7 +150,7 @@ function create_config echo "problem with payload" exit 1 fi - printf "Using payload $PAYLOAD\n" + if [ "$quiet" == "false" ]; then printf "Using payload $PAYLOAD\n"; fi elif [ "$payloads" = "none" ]; then PAYLOAD=none fi |