From: Frank Gevaerts Date: Fri, 9 Dec 2022 15:42:21 +0000 (+0100) Subject: contributors.sh: actually use $CURLWWW instead of just setting it. X-Git-Tag: curl-7_87_0~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99f72c01c214124ee2b18f8c7184215cfc2609c3;p=thirdparty%2Fcurl.git contributors.sh: actually use $CURLWWW instead of just setting it. The script was all set up for flexibility where curl-www is elsewhere in the filesystem, but then hard-coded ../curl-www anyway... Closes #10064 --- diff --git a/scripts/contributors.sh b/scripts/contributors.sh index caa6ad80dc..bb07457097 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -60,7 +60,7 @@ fi git log --pretty=full --use-mailmap $start..HEAD if [ -d "$CURLWWW" ] then - git -C ../curl-www log --pretty=full --use-mailmap $start..HEAD + git -C "$CURLWWW" log --pretty=full --use-mailmap $start..HEAD fi ) | \ grep -Eai '(^Author|^Commit|by):' | \