Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10265
-gerrit
commit 4843d6bb0508271b4314525d686a7aa0f48cd444 Author: Paul Menzel paulepanter@users.sourceforge.net Date: Wed May 20 22:32:15 2015 +0200
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 --- util/board_status/board_status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 2cb4e5c..4f9fd85 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