mirror of
https://github.com/curl/curl.git
synced 2026-05-03 05:17:50 +03:00
7 lines
199 B
Bash
Executable file
7 lines
199 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 --depth=1 https://github.com/curl/curl-fuzzer "$1"
|