mirror of
https://github.com/curl/curl.git
synced 2026-06-01 23:54:17 +03:00
8 lines
187 B
Bash
Executable file
8 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
|
|
|