mirror of https://github.com/google/oss-fuzz.git
[docs] Recommend using "gsutil -m cp -r" instead of "gsutil -m rsync". (#2811)
This commit is contained in:
parent
f9c4318e38
commit
bae6ad36a6
|
@ -53,12 +53,12 @@ Copy the corpus to a directory on your
|
||||||
machine by running the following command:
|
machine by running the following command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ gsutil -m rsync gs://<bucket_path> <local_directory>
|
$ gsutil -m cp -r gs://<bucket_path> <local_directory>
|
||||||
```
|
```
|
||||||
Using the expat example above, this would be:
|
Using the expat example above, this would be:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ gsutil -m rsync \
|
$ gsutil -m cp -r \
|
||||||
gs://expat-corpus.clusterfuzz-external.appspot.com/libFuzzer/expat_parse_fuzzer \
|
gs://expat-corpus.clusterfuzz-external.appspot.com/libFuzzer/expat_parse_fuzzer \
|
||||||
<local_directory>
|
<local_directory>
|
||||||
```
|
```
|
||||||
|
@ -67,4 +67,4 @@ $ gsutil -m rsync \
|
||||||
|
|
||||||
We keep daily zipped backups of your corpora. These can be accessed from the
|
We keep daily zipped backups of your corpora. These can be accessed from the
|
||||||
**corpus_backup** column of the fuzzer statistics page. Downloading these can
|
**corpus_backup** column of the fuzzer statistics page. Downloading these can
|
||||||
be significantly faster than running `gsutil -m rsync` on the corpus bucket.
|
be significantly faster than running `gsutil -m cp -r` on the corpus bucket.
|
||||||
|
|
Loading…
Reference in New Issue