Skip to content

Commit

Permalink
Merge pull request #76 from vadi2/patch-1
Browse files Browse the repository at this point in the history
Trim trailing spaces around package names
  • Loading branch information
ZedThree committed Mar 27, 2023
2 parents 1a56f35 + a547e68 commit 4f11cae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions post/clang_tidy_review/clang_tidy_review/review.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def main():
apt_packages = re.split(BAD_CHARS_APT_PACKAGES_PATTERN, args.apt_packages)[
0
].split(",")
apt_packages = [pkg.strip() for pkg in apt_packages]
with message_group(f"Installing additional packages: {apt_packages}"):
subprocess.run(["apt-get", "update"])
subprocess.run(
Expand Down

0 comments on commit 4f11cae

Please sign in to comment.