From 3c654831215dafd772e220d314b3c9221417f461 Mon Sep 17 00:00:00 2001 From: fselmo Date: Tue, 7 Nov 2023 12:07:54 -0700 Subject: [PATCH] update the grep command for upstream branch check - Sometimes 'www.' is used in the url for https --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fd94b2ce..29815fad 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,9 @@ notes: check-bump release: check-bump clean # require that upstream is configured for ethereum/ - git remote -v | grep "upstream\tgit@github.com:ethereum/.git (push)\|upstream\thttps://github.com/ethereum/ (push)" + @git remote -v | grep \ + -e "upstream\tgit@github.com:ethereum/.git (push)" \ + -Ee "upstream\thttps://(www.)?github.com/ethereum/ \(push\)" # verify that docs build correctly ./newsfragments/validate_files.py is-empty make build-docs