summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2019-03-14 14:03:16 +0100
committerDan Fandrich <dan@coneharvesters.com>2019-03-14 14:03:16 +0100
commit697147896375124a1fb4e216de48bbd42019d82a (patch)
tree87056f7660b93259ae9fcfcac47c86f24c5af93a
parent6c6035532383e300c712e4c1cd9fdd749ed5cf59 (diff)
downloadcurl-697147896375124a1fb4e216de48bbd42019d82a.tar.gz
fuzzer: Only clone the latest fuzzer code, for speed.
-rwxr-xr-xtests/fuzz/download_fuzzer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzz/download_fuzzer.sh b/tests/fuzz/download_fuzzer.sh
index e88a581e1..0a841780e 100755
--- a/tests/fuzz/download_fuzzer.sh
+++ b/tests/fuzz/download_fuzzer.sh
@@ -4,4 +4,4 @@
set -ex
# Clone the curl-fuzzer repository to the specified directory.
-git clone https://github.com/curl/curl-fuzzer $1
+git clone --depth=1 https://github.com/curl/curl-fuzzer "$1"