summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-11-30 09:09:47 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-11-30 09:09:47 +0100
commit9967c10b6daa10b387a883ab764bccd28deff9b2 (patch)
tree7f2b217bff430feb8fcdcea006a4341b65d0a09f /scripts
parent4e2146554ad3e7d97d6cd0d7f6cd948edfdbb646 (diff)
downloadcurl-9967c10b6daa10b387a883ab764bccd28deff9b2.tar.gz
scripts/contributors.sh: strip one OR MORE leading spaces
From names found credited in commit logs
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/contributors.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contributors.sh b/scripts/contributors.sh
index 10dc8c433..caa6ad80d 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'| \