summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2022-12-09 16:42:21 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-12-09 16:50:23 +0100
commit99f72c01c214124ee2b18f8c7184215cfc2609c3 (patch)
tree5110f27e089bf6ac58c1126dc50e028532c935cc /scripts
parentf0b374f662e28bee194038c3e7d5fae4cb498b06 (diff)
downloadcurl-99f72c01c214124ee2b18f8c7184215cfc2609c3.tar.gz
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
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 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):' | \