Skip to content

Commit e038526

Browse files
committed
Remove unnecessary semicolon for consistent script formatting
Based @EliahKagan's suggestion and feedback on: gitpython-developers#1901
1 parent d79c176 commit e038526

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: fuzzing/oss-fuzz-scripts/container-environment-bootstrap.sh

+5-5
Original file line numberDiff line numberDiff 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

5050
download_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.

0 commit comments

Comments
 (0)