mirror of
https://github.com/curl/curl.git
synced 2025-01-12 13:55:11 +08:00
b801b453af
- replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037
8 lines
186 B
Bash
Executable File
8 lines
186 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
|