mirror of
https://github.com/curl/curl.git
synced 2025-02-11 14:50:40 +08:00
9 lines
187 B
Bash
Executable File
9 lines
187 B
Bash
Executable File
#!/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
|
|
|