Skip to content

Commit

Permalink
Use gitpython-developers org ownd repository for seed corpra
Browse files Browse the repository at this point in the history
This repo was created after discussion in PR #1901.
  • Loading branch information
DaveLak committed Apr 15, 2024
1 parent 5e56e96 commit 2041ba9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fuzzing/oss-fuzz-scripts/container-environment-bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ download_and_concatenate_common_dictionaries() {

fetch_seed_corpra() {
# Seed corpus zip files are hosted in a separate repository to avoid additional bloat in this repo.
git clone --depth 1 https://github.com/DaveLak/oss-fuzz-inputs.git oss-fuzz-inputs &&
rsync -avc oss-fuzz-inputs/gitpython/corpra/ "$SEED_DATA_DIR/" &&
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.
}

########################
Expand Down

0 comments on commit 2041ba9

Please sign in to comment.