8 lines
199 B
Bash
8 lines
199 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 --depth=1 https://github.com/curl/curl-fuzzer "$1"
|