We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e56e96 commit 2041ba9Copy full SHA for 2041ba9
fuzzing/oss-fuzz-scripts/container-environment-bootstrap.sh
@@ -36,9 +36,9 @@ download_and_concatenate_common_dictionaries() {
36
37
fetch_seed_corpra() {
38
# Seed corpus zip files are hosted in a separate repository to avoid additional bloat in this repo.
39
- git clone --depth 1 https://github.com/DaveLak/oss-fuzz-inputs.git oss-fuzz-inputs &&
40
- rsync -avc oss-fuzz-inputs/gitpython/corpra/ "$SEED_DATA_DIR/" &&
41
- rm -rf oss-fuzz-inputs; # Clean up the cloned repo to keep the Docker image as slim as possible.
+ git clone --depth 1 https://github.com/gitpython-developers/qa-assets.git qa-assets &&
+ rsync -avc qa-assets/gitpython/corpra/ "$SEED_DATA_DIR/" &&
+ rm -rf qa-assets; # Clean up the cloned repo to keep the Docker image as slim as possible.
42
}
43
44
########################
0 commit comments