From 749e075ef30193600318a9e1b74fa655e6c08453 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 20 May 2015 22:32:15 +0200 Subject: [PATCH] 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 Reviewed-on: http://review.coreboot.org/10265 Tested-by: build bot (Jenkins) Reviewed-by: Timothy Pearson --- 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 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