blob: e88a581e1c236eeb322db190c20baaf671d8f6b1 (
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 https://github.com/curl/curl-fuzzer $1
 |