From 9967c10b6daa10b387a883ab764bccd28deff9b2 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 30 Nov 2022 09:09:47 +0100 Subject: [PATCH] scripts/contributors.sh: strip one OR MORE leading spaces From names found credited in commit logs --- scripts/contributors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/contributors.sh b/scripts/contributors.sh index 10dc8c433d..caa6ad80dc 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -70,7 +70,7 @@ cut '-d<' -f1 | \ tr , '\012' | \ sed 's/ at github/ on github/' | \ sed 's/ and /\n/' | \ -sed -e 's/^ //' -e 's/ $//g' -e 's/@users.noreply.github.com$/ on github/' +sed -e 's/^ *//' -e 's/ $//g' -e 's/@users.noreply.github.com$/ on github/' grep -a "^ [^ \(]" RELEASE-NOTES| \ sed 's/, */\n/g'| \