From 99f72c01c214124ee2b18f8c7184215cfc2609c3 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Fri, 9 Dec 2022 16:42:21 +0100 Subject: 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 --- scripts/contributors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/contributors.sh') diff --git a/scripts/contributors.sh b/scripts/contributors.sh index caa6ad80d..bb0745709 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):' | \ -- cgit v1.2.1