[coreboot-gerrit] Patch set updated for coreboot: board_status: Use explicit branch name in "git push"

Jonathan Neuschäfer (j.neuschaefer@gmx.net) gerrit at coreboot.org
Tue May 10 17:46:01 CEST 2016


Jonathan Neuschäfer (j.neuschaefer at gmx.net) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14539

-gerrit

commit 3b16ac2a0ce151dd9d81a6acdf0592ca3d73920e
Author: Jonathan Neuschäfer <j.neuschaefer at gmx.net>
Date:   Tue May 10 17:43:53 2016 +0200

    board_status: Use explicit branch name in "git push"
    
    In some configurations, "git push <remote>" (without a branch name)
    refuses to do anything.
    
    Change-Id: I23a401b39dd851e9723676586c7f29afa111b49d
    Signed-off-by: Jonathan Neuschäfer <j.neuschaefer at gmx.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 3dca85f..29d05b0 100755
--- a/util/board_status/board_status.sh
+++ b/util/board_status/board_status.sh
@@ -383,7 +383,7 @@ if [ $UPLOAD_RESULTS -eq 1 ]; then
 	git add "${vendor}"
 	git commit -a -m "${mainboard_dir}/${tagged_version}/${timestamp}"
 	count=0
-	until git push origin || test $count -eq 3; do
+	until git push origin master || test $count -eq 3; do
 	        git pull --rebase
 		count=$((count + 1))
 	done



More information about the coreboot-gerrit mailing list