From: Daniel Stenberg Date: Wed, 30 Nov 2022 08:09:47 +0000 (+0100) Subject: scripts/contributors.sh: strip one OR MORE leading spaces X-Git-Tag: curl-7_87_0~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9967c10b6daa1;p=thirdparty%2Fcurl.git scripts/contributors.sh: strip one OR MORE leading spaces From names found credited in commit logs --- 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'| \