2017-09-25 05:59:18 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# If any commands fail, fail the script immediately.
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
# Clone the curl-fuzzer repository to the specified directory.
|
2019-03-14 09:03:16 -04:00
|
|
|
git clone --depth=1 https://github.com/curl/curl-fuzzer "$1"
|