Nicholas Chin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/76102?usp=email )
Change subject: [NEEDS-TEST] util/board_status: Fix branch for board-status repo ......................................................................
[NEEDS-TEST] util/board_status: Fix branch for board-status repo
It seems like the default branch for the board-status repo was renamed from master to main. Thus, change the branch so that `board-status -u` can properly upload results to review.coreboot.org.
Change-Id: I5fb8d14ab9628e8d9a9d2b0116262791a8e30b97 Signed-off-by: Nicholas Chin nic.c3.14@gmail.com --- M util/board_status/board_status.sh 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/02/76102/1
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 78f21a80..da19940 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -553,7 +553,7 @@ git add "${vendor}" git commit -a -m "${mainboard_dir}/${tagged_version}/${timestamp}" count=0 - until git push origin master || test $count -eq 3; do + until git push origin main || test $count -eq 3; do git pull --rebase count=$((count + 1)) done