mirror of
https://github.com/SeanOMik/eBookReaderSwitch.git
synced 2025-02-18 08:40:06 +00: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"
|