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