File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,19 +38,19 @@ fetch_seed_corpra() {
3838 # Seed corpus zip files are hosted in a separate repository to avoid additional bloat in this repo.
3939 git clone --depth 1 https://github.com/gitpython-developers/qa-assets.git qa-assets &&
4040 rsync -avc qa-assets/gitpython/corpra/ " $SEED_DATA_DIR /" &&
41- rm -rf qa-assets; # Clean up the cloned repo to keep the Docker image as slim as possible.
41+ rm -rf qa-assets # Clean up the cloned repo to keep the Docker image as slim as possible.
4242}
4343
4444# #######################
4545# Main execution logic #
4646# #######################
4747
48- fetch_seed_corpra;
48+ fetch_seed_corpra
4949
5050download_and_concatenate_common_dictionaries " $SEED_DATA_DIR /__base.dict" \
5151 " https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/utf8.dict" \
52- " https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/url.dict" ;
52+ " https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/url.dict"
5353
5454# The OSS-Fuzz base image has outdated dependencies by default so we upgrade them below.
55- python3 -m pip install --upgrade pip;
56- python3 -m pip install ' setuptools~=69.0' ' pyinstaller~=6.0' ; # Uses the latest versions know to work at the time of this commit.
55+ python3 -m pip install --upgrade pip
56+ python3 -m pip install ' setuptools~=69.0' ' pyinstaller~=6.0' # Uses the latest versions know to work at the time of this commit.
You can’t perform that action at this time.
0 commit comments