diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2015-05-20 22:32:15 +0200 |
---|---|---|
committer | David Hendricks <dhendrix@chromium.org> | 2015-05-20 23:27:51 +0200 |
commit | 749e075ef30193600318a9e1b74fa655e6c08453 (patch) | |
tree | a5d9921bfabb0f2859f8d4022e2d0bac7120f669 | |
parent | 5e597572ef9b32dfd0ea0b94a9fddd998bfd0f77 (diff) | |
download | coreboot-749e075ef30193600318a9e1b74fa655e6c08453.tar.xz |
util/board_status: Add `echo` before message string
Fix up commit 1b6e7a67 (Updates to the board status script) forgetting
to put `echo` in front of the string.
Change-Id: I7d4dfcc62545dfee2073410ba47489318a9bf5c6
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/10265
Tested-by: build bot (Jenkins)
Reviewed-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
-rwxr-xr-x | util/board_status/board_status.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 2cb4e5c792..4f9fd85fdd 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -272,7 +272,7 @@ if [ $UPLOAD_RESULTS -eq 1 ]; then # whole repo? git clone $bsrepo if [ $? -ne 0 ]; then - "Error cloning board-status repo, aborting." + echo "Error cloning board-status repo, aborting." exit $EXIT_FAILURE fi fi |