blob: 0a841780e4f8bf0dc500700e950e714450f4936a (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
# If any commands fail, fail the script immediately.
set -ex
# Clone the curl-fuzzer repository to the specified directory.
git clone --depth=1 https://github.com/curl/curl-fuzzer "$1"
|