mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
9 lines
187 B
Bash
9 lines
187 B
Bash
|
#!/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
|
||
|
|