From: Dan Fandrich Date: Thu, 14 Mar 2019 13:03:16 +0000 (+0100) Subject: fuzzer: Only clone the latest fuzzer code, for speed. X-Git-Tag: curl-7_64_1~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=697147896375124a1fb4e216de48bbd42019d82a;p=thirdparty%2Fcurl.git fuzzer: Only clone the latest fuzzer code, for speed. --- diff --git a/tests/fuzz/download_fuzzer.sh b/tests/fuzz/download_fuzzer.sh index e88a581e1c..0a841780e4 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"