File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,19 +38,19 @@ fetch_seed_corpra() {
38
38
# Seed corpus zip files are hosted in a separate repository to avoid additional bloat in this repo.
39
39
git clone --depth 1 https://github.com/gitpython-developers/qa-assets.git qa-assets &&
40
40
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.
42
42
}
43
43
44
44
# #######################
45
45
# Main execution logic #
46
46
# #######################
47
47
48
- fetch_seed_corpra;
48
+ fetch_seed_corpra
49
49
50
50
download_and_concatenate_common_dictionaries " $SEED_DATA_DIR /__base.dict" \
51
51
" 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"
53
53
54
54
# 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