mirror of
https://github.com/curl/curl.git
synced 2026-04-27 00:12:14 +03:00
7 lines
187 B
Bash
Executable file
7 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 https://github.com/curl/curl-fuzzer $1
|